Exemplo n.º 1
0
 def test_with_list(self):
     assert utils.destr(['1', '2']) == ['1', '2']
Exemplo n.º 2
0
 def test_with_none(self):
     assert utils.destr(None) == []
Exemplo n.º 3
0
 def test_with_string(self):
     assert utils.destr('hello') == ['hello']