1 from test
.test_support
import have_unicode
, run_unittest
6 def __init__(self
, el
):
10 def __contains__(self
, el
):
14 def __getitem__(self
, n
):
18 class TestContains(unittest
.TestCase
):
19 def test_common_tests(self
):
24 self
.assertNotIn(0, b
)
26 self
.assertNotIn(0, c
)
27 self
.assertRaises(TypeError, lambda: 1 in a
)
28 self
.assertRaises(TypeError, lambda: 1 not in a
)
31 self
.assertIn('c', 'abc')
32 self
.assertNotIn('d', 'abc')
35 self
.assertIn('', 'abc')
37 self
.assertRaises(TypeError, lambda: None in 'abc')
40 def test_char_in_unicode(self
):
41 self
.assertIn('c', unicode('abc'))
42 self
.assertNotIn('d', unicode('abc'))
44 self
.assertIn('', unicode(''))
45 self
.assertIn(unicode(''), '')
46 self
.assertIn(unicode(''), unicode(''))
47 self
.assertIn('', unicode('abc'))
48 self
.assertIn(unicode(''), 'abc')
49 self
.assertIn(unicode(''), unicode('abc'))
51 self
.assertRaises(TypeError, lambda: None in unicode('abc'))
53 # test Unicode char in Unicode
54 self
.assertIn(unicode('c'), unicode('abc'))
55 self
.assertNotIn(unicode('d'), unicode('abc'))
57 # test Unicode char in string
58 self
.assertIn(unicode('c'), 'abc')
59 self
.assertNotIn(unicode('d'), 'abc')
61 def test_builtin_sequence_types(self
):
62 # a collection of tests on builtin sequence types
66 self
.assertNotIn(16, a
)
67 self
.assertNotIn(a
, a
)
72 self
.assertNotIn(16, a
)
73 self
.assertNotIn(a
, a
)
76 """Behaves strangely when compared
78 This class is designed to make sure that the contains code
79 works when the list is modified during the check.
82 def __cmp__(self
, other
):
89 self
.assertNotIn(Deviant1(), Deviant1
.aList
)
92 """Behaves strangely when compared
94 This class raises an exception during comparison. That in
95 turn causes the comparison to fail with a TypeError.
97 def __cmp__(self
, other
):
99 raise RuntimeError, "gotcha"
102 self
.assertNotIn(Deviant2(), a
)
108 run_unittest(TestContains
)
110 if __name__
== '__main__':