(tmp_path)
| 302 | |
| 303 | |
| 304 | def test_resolve_identifier_empty(tmp_path): |
| 305 | reg = _make_registry( |
| 306 | tmp_path, |
| 307 | { |
| 308 | "h1": {"name": "a.pdf", "doc_name": "a-h1"}, |
| 309 | }, |
| 310 | ) |
| 311 | assert _resolve_doc_identifier(reg, "nope") == [] |
| 312 | |
| 313 | |
| 314 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected