Beispiel #1
0
 def test_in_list_negative(self):
     v = ['a', 'b', 'q']
     s = ['a', 'b', 'c', 'd']
     self.assertEqual(['a', 'b'], curator.in_list(v, s))
Beispiel #2
0
 def test_in_list_negative(self):
     v = ['a', 'b', 'q']
     s = ['a', 'b', 'c', 'd']
     self.assertEqual(['a', 'b'], curator.in_list(v, s))
Beispiel #3
0
 def test_in_list_positive(self):
     v = ['a', 'b']
     s = ['a', 'b', 'c', 'd']
     self.assertEqual(v, curator.in_list(v, s))
Beispiel #4
0
 def test_in_list_positive(self):
     v = ['a', 'b']
     s = ['a', 'b', 'c', 'd']
     self.assertEqual(v, curator.in_list(v, s))