示例#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())
示例#2
0
 def test_field2ulines_with_empty_string(self):
     from ZPublisher.Converters import field2ulines
     to_convert = ''
     self.assertEqual(field2ulines(to_convert), [])
示例#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])
示例#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())
示例#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])
示例#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])
示例#7
0
 def test_field2ulines_with_empty_string(self):
     from ZPublisher.Converters import field2ulines
     to_convert = ''
     self.assertEqual(field2ulines(to_convert), [])
示例#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])
 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])
示例#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])