예제 #1
0
파일: test_utils.py 프로젝트: MrJohz/votes
 def test_with_list(self):
     assert utils.destr(['1', '2']) == ['1', '2']
예제 #2
0
파일: test_utils.py 프로젝트: MrJohz/votes
 def test_with_none(self):
     assert utils.destr(None) == []
예제 #3
0
파일: test_utils.py 프로젝트: MrJohz/votes
 def test_with_string(self):
     assert utils.destr('hello') == ['hello']