コード例 #1
0
ファイル: test_doloop.py プロジェクト: Yelp/doloop
 def test_sequence(self):
     self.assertEqual(_to_list(x for x in 'cats'), ['c', 'a', 't', 's'])
コード例 #2
0
ファイル: test_doloop.py プロジェクト: Yelp/doloop
 def test_list(self):
     self.assertEqual(_to_list([1, 2, 3]), [1, 2, 3])
コード例 #3
0
ファイル: test_doloop.py プロジェクト: Yelp/doloop
 def test_tuple(self):
     self.assertEqual(_to_list(('one', 'two')), ['one', 'two'])
コード例 #4
0
ファイル: test_doloop.py プロジェクト: Yelp/doloop
 def test_str(self):
     self.assertEqual(_to_list('efgh'), ['efgh'])
コード例 #5
0
ファイル: test_doloop.py プロジェクト: Yelp/doloop
 def test_int(self):
     self.assertEqual(_to_list(1), [1])
コード例 #6
0
ファイル: test_doloop.py プロジェクト: Yelp/doloop
 def test_None(self):
     self.assertEqual(_to_list(None), [None])
コード例 #7
0
ファイル: test_doloop.py プロジェクト: Yelp/doloop
 def test_bytes(self):
     self.assertEqual(_to_list(b'abcd'), [b'abcd'])
コード例 #8
0
 def test_tuple(self):
     self.assertEqual(_to_list(('one', 'two')), ['one', 'two'])
コード例 #9
0
 def test_sequence(self):
     self.assertEqual(_to_list(x for x in 'cats'), ['c', 'a', 't', 's'])
コード例 #10
0
 def test_list(self):
     self.assertEqual(_to_list([1, 2, 3]), [1, 2, 3])
コード例 #11
0
 def test_int(self):
     self.assertEqual(_to_list(1), [1])
コード例 #12
0
 def test_str(self):
     self.assertEqual(_to_list('efgh'), ['efgh'])
コード例 #13
0
 def test_bytes(self):
     self.assertEqual(_to_list(b'abcd'), [b'abcd'])
コード例 #14
0
 def test_None(self):
     self.assertEqual(_to_list(None), [None])