evict() on an unknown path is a no-op.
(cache: _IndexCache, tmp_path: Path)
| 470 | |
| 471 | |
| 472 | def test_cache_evict_missing(cache: _IndexCache, tmp_path: Path) -> None: |
| 473 | """evict() on an unknown path is a no-op.""" |
| 474 | cache.evict(str(tmp_path)) # should not raise |