(self, kb: Path, file_hash: str, metadata: dict)
| 192 | """ |
| 193 | |
| 194 | def _add_entry(self, kb: Path, file_hash: str, metadata: dict) -> None: |
| 195 | HashRegistry(kb / ".openkb" / "hashes.json").add(file_hash, metadata) |
| 196 | |
| 197 | def test_registry_doc_name_resolves_renamed_artifacts(self, tmp_path): |
| 198 | wiki = _make_wiki(tmp_path) |
no test coverage detected