Exemplo n.º 1
0
 def test_string(self):
     self.assertEqual(util.makeList('hello'), ['hello'])
Exemplo n.º 2
0
 def test_empty_string(self):
     self.assertEqual(util.makeList(''), [''])
Exemplo n.º 3
0
 def test_None(self):
     self.assertEqual(util.makeList(None), [])
Exemplo n.º 4
0
 def test_tuple(self):
     self.assertEqual(util.makeList(('a', 'b')), ['a', 'b'])
Exemplo n.º 5
0
 def test_copy(self):
     input = ['a', 'b']
     output = util.makeList(input)
     input.append('c')
     self.assertEqual(output, ['a', 'b'])
Exemplo n.º 6
0
 def test_tuple(self):
     self.assertEqual(util.makeList(('a', 'b')), ['a', 'b'])
Exemplo n.º 7
0
 def test_string(self):
     self.assertEqual(util.makeList("hello"), ["hello"])
Exemplo n.º 8
0
 def test_None(self):
     self.assertEqual(util.makeList(None), [])
Exemplo n.º 9
0
 def test_string(self):
     self.assertEqual(util.makeList('hello'), ['hello'])
Exemplo n.º 10
0
 def test_copy(self):
     input = ["a", "b"]
     output = util.makeList(input)
     input.append("c")
     self.assertEqual(output, ["a", "b"])
Exemplo n.º 11
0
 def test_empty_string(self):
     self.assertEqual(util.makeList(''), [''])
Exemplo n.º 12
0
 def test_tuple(self):
     self.assertEqual(util.makeList(("a", "b")), ["a", "b"])
Exemplo n.º 13
0
 def test_list(self):
     self.assertEqual(util.makeList(["a", "b"]), ["a", "b"])
Exemplo n.º 14
0
 def test_unicode(self):
     self.assertEqual(util.makeList(u"\N{SNOWMAN}"), [u"\N{SNOWMAN}"])
Exemplo n.º 15
0
 def test_unicode(self):
     self.assertEqual(util.makeList(u'\N{SNOWMAN}'), [u'\N{SNOWMAN}'])
Exemplo n.º 16
0
 def test_unicode(self):
     self.assertEqual(util.makeList(u'\N{SNOWMAN}'), [u'\N{SNOWMAN}'])
Exemplo n.º 17
0
 def test_list(self):
     self.assertEqual(util.makeList(['a', 'b']), ['a', 'b'])
Exemplo n.º 18
0
 def test_list(self):
     self.assertEqual(util.makeList(['a', 'b']), ['a', 'b'])
Exemplo n.º 19
0
 def test_copy(self):
     input = ['a', 'b']
     output = util.makeList(input)
     input.append('c')
     self.assertEqual(output, ['a', 'b'])
Exemplo n.º 20
0
 def test_empty_string(self):
     self.assertEqual(util.makeList(""), [""])