Esempio n. 1
0
 def test_field2ulines_with_string_with_newlines(self):
     from ZPublisher.Converters import field2ulines
     to_convert = u'abc\ndef\nghi'
     self.assertEqual(field2ulines(to_convert), to_convert.splitlines())
Esempio n. 2
0
 def test_field2ulines_with_empty_string(self):
     from ZPublisher.Converters import field2ulines
     to_convert = ''
     self.assertEqual(field2ulines(to_convert), [])
Esempio n. 3
0
 def test_field2ulines_with_string_no_newlines(self):
     from ZPublisher.Converters import field2ulines
     to_convert = u'abc def ghi'
     self.assertEqual(field2ulines(to_convert), [to_convert])
Esempio n. 4
0
 def test_field2ulines_with_string_with_newlines(self):
     from ZPublisher.Converters import field2ulines
     to_convert = u'abc\ndef\nghi'
     self.assertEqual(field2ulines(to_convert), to_convert.splitlines())
Esempio n. 5
0
 def test_field2ulines_with_tuple(self):
     from ZPublisher.Converters import field2ulines
     to_convert = (u'one', 'two')
     self.assertEqual(field2ulines(to_convert),
                      [text_type(x) for x in to_convert])
Esempio n. 6
0
 def test_field2ulines_with_string_no_newlines(self):
     from ZPublisher.Converters import field2ulines
     to_convert = u'abc def ghi'
     self.assertEqual(field2ulines(to_convert), [to_convert])
Esempio n. 7
0
 def test_field2ulines_with_empty_string(self):
     from ZPublisher.Converters import field2ulines
     to_convert = ''
     self.assertEqual(field2ulines(to_convert), [])
Esempio n. 8
0
 def test_field2ulines_with_tuple(self):
     from ZPublisher.Converters import field2ulines
     to_convert = (u'one', 'two')
     self.assertEqual(field2ulines(to_convert),
                      [text_type(x) for x in to_convert])
Esempio n. 9
0
 def test_field2ulines_with_list(self):
     from ZPublisher.Converters import field2ulines
     to_convert = [u'one', 'two']
     self.assertEqual(field2ulines(to_convert),
                      [unicode(x) for x in to_convert])
Esempio n. 10
0
 def test_field2ulines_with_list(self):
     from ZPublisher.Converters import field2ulines
     to_convert = ['one', 'two']
     self.assertEqual(field2ulines(to_convert),
                      [str(x) for x in to_convert])