(self, tmp_path)
| 173 | assert "longdoc.pdf" not in result |
| 174 | |
| 175 | def test_empty_raw_means_no_missing(self, tmp_path): |
| 176 | wiki = _make_wiki(tmp_path) |
| 177 | raw = tmp_path / "raw" |
| 178 | raw.mkdir() |
| 179 | |
| 180 | result = find_missing_entries(raw, wiki) |
| 181 | |
| 182 | assert result == [] |
| 183 | |
| 184 | |
| 185 | class TestFindMissingEntriesRegistry: |
nothing calls this directly
no test coverage detected