コード例 #1
0
 def test__isIn_false(self):
     a = ["word", "that", "might", "be"]
     b = ["airplane"]
     assert_false(_isIn(b, a))
コード例 #2
0
 def test__isIn_true(self):
     a = ["word", "that", "might", "be"]
     b = ["might"]
     assert_true(_isIn(b, a))