()
| 26 | |
| 27 | |
| 28 | def test_trivial() -> None: |
| 29 | cache: LRUCache[Any, Any] = LRUCache(maxsize=0) |
| 30 | cache["x"] = 1 |
| 31 | assert len(cache) == 0 |
| 32 | |
| 33 | |
| 34 | def test_invalid() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…