Exemplo n.º 1
0
 def test_assert_all_in(self):
     with assert_raises(AssertionError):
         assert_all_in([1, 2], [1, 3])
Exemplo n.º 2
0
 def test_assert_all_in(self):
     assert_all_in([2, 3, 4], [1, 2, 3, 4, 5, 6])
     assert_all_in('bc1', 'abc123')