(self)
| 359 | eq_(o3, {1, 2, 4, 7}) |
| 360 | |
| 361 | def test_copy(self): |
| 362 | o = util.OrderedSet([3, 2, 4, 5]) |
| 363 | cp = o.copy() |
| 364 | is_instance_of(cp, util.OrderedSet) |
| 365 | eq_(o, cp) |
| 366 | o.add(42) |
| 367 | is_false(42 in cp) |
| 368 | |
| 369 | def test_pickle(self): |
| 370 | o = util.OrderedSet([2, 4, 9, 42]) |
nothing calls this directly
no test coverage detected