(self, fn)
| 307 | lambda o: o.union([11, 2], [22, 8]), |
| 308 | ) |
| 309 | def test_op(self, fn): |
| 310 | o = util.OrderedSet(range(10)) |
| 311 | x = fn(o) |
| 312 | is_instance_of(x, util.OrderedSet) |
| 313 | in_(9, x) |
| 314 | in_(11, x) |
| 315 | not_in(11, o) |
| 316 | |
| 317 | def test_update(self): |
| 318 | o = util.OrderedSet(range(10)) |
nothing calls this directly
no test coverage detected