(self)
| 367 | is_false(42 in cp) |
| 368 | |
| 369 | def test_pickle(self): |
| 370 | o = util.OrderedSet([2, 4, 9, 42]) |
| 371 | for loads, dumps in picklers(): |
| 372 | l = loads(dumps(o)) |
| 373 | is_instance_of(l, util.OrderedSet) |
| 374 | eq_(list(l), [2, 4, 9, 42]) |
| 375 | |
| 376 | |
| 377 | class ImmutableDictTest(fixtures.TestBase): |
nothing calls this directly
no test coverage detected