コード例 #1
0
 def testcontains_iteslf(self):
     assert contains([1, 2, 3], [1, 2, 3])
コード例 #2
0
 def testcontains_middle_seq(self):
     assert contains([1, 2, 3, 4, 5], [3, 4])
コード例 #3
0
 def testcontains_oversized_seq(self):
     assert contains([1, 2, 3, 4, 4], [1, 2, 3, 4])
コード例 #4
0
 def test_smoketest(self):
     assert contains([1, 2, 3, 4], [1, 2])
コード例 #5
0
 def testcontains_end_seq(self):
     assert contains([1, 2, 3, 4], [3, 4])
コード例 #6
0
 def testcontains_iteslf(self):
     assert contains([1, 2, 3], [1, 2, 3])
コード例 #7
0
 def testcontains_oversized_seq(self):
     assert contains([1, 2, 3, 4, 4], [1, 2, 3, 4])
コード例 #8
0
 def testcontains_middle_seq(self):
     assert contains([1, 2, 3, 4, 5], [3, 4])
コード例 #9
0
 def testcontains_end_seq(self):
     assert contains([1, 2, 3, 4], [3, 4])
コード例 #10
0
 def test_smoketest(self):
     assert contains([1, 2, 3, 4], [1, 2])