()
| 32 | |
| 33 | |
| 34 | def test_invalid() -> None: |
| 35 | with pytest.raises(TypeError): |
| 36 | LRUCache(maxsize=None) # type: ignore[arg-type] |
| 37 | with pytest.raises(ValueError): |
| 38 | LRUCache(maxsize=-1) |
| 39 | |
| 40 | |
| 41 | def test_update_priority() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…