(self)
| 96 | storage.remove("nonexistent") # Should not raise |
| 97 | |
| 98 | def test_has(self) -> None: |
| 99 | storage = InMemoryStorage() |
| 100 | assert not storage.has("test_key") |
| 101 | storage.store("test_key", b"hello") |
| 102 | assert storage.has("test_key") |
| 103 | |
| 104 | def test_shutdown_clears_storage(self) -> None: |
| 105 | storage = InMemoryStorage() |
nothing calls this directly
no test coverage detected