(self)
| 22 | assert 0 not in bset |
| 23 | |
| 24 | def test_contains(self): |
| 25 | bset = BoundedSet(max_items=10) |
| 26 | bset.add(1) |
| 27 | assert 1 in bset |
| 28 | |
| 29 | def test_lru_add(self): |
| 30 | bset = BoundedSet(max_items=10) |
nothing calls this directly
no test coverage detected