(tmp_path: Path, entries: dict[str, dict])
| 259 | |
| 260 | |
| 261 | def _make_registry(tmp_path: Path, entries: dict[str, dict]) -> HashRegistry: |
| 262 | p = tmp_path / "hashes.json" |
| 263 | p.write_text(json.dumps(entries)) |
| 264 | return HashRegistry(p) |
| 265 | |
| 266 | |
| 267 | def test_resolve_identifier_exact_name_wins(tmp_path): |
no test coverage detected