コード例 #1
0
ファイル: test_assertions.py プロジェクト: jimr/testy
 def test_assert_list_prefix(self):
     with assert_raises(AssertionError):
         assert_list_prefix([1, 2, 3], [4, 5, 6])
コード例 #2
0
ファイル: test_assertions.py プロジェクト: jimr/testy
 def test_assert_list_prefix(self):
     l1 = [1, 2, 3]
     l2 = [1, 2, 3, 'a', 'b', 'c']
     assert_list_prefix(l1, l2)