Exemple #1
0
 def test_assert_not_in(self):
     with assert_raises(AssertionError):
         assert_not_in(1, [1, 2, 3])
Exemple #2
0
 def test_assert_not_in(self):
     assert_not_in(1, [2, 3, 4])
     assert_not_in('a', 'bcd')