(self, tmp_path)
| 151 | assert result == [] |
| 152 | |
| 153 | def test_detects_missing_entry(self, tmp_path): |
| 154 | wiki = _make_wiki(tmp_path) |
| 155 | raw = tmp_path / "raw" |
| 156 | raw.mkdir() |
| 157 | (raw / "unprocessed.pdf").write_bytes(b"PDF content") |
| 158 | # No corresponding wiki entry |
| 159 | |
| 160 | result = find_missing_entries(raw, wiki) |
| 161 | |
| 162 | assert "unprocessed.pdf" in result |
| 163 | |
| 164 | def test_summary_counts_as_entry(self, tmp_path): |
| 165 | wiki = _make_wiki(tmp_path) |
nothing calls this directly
no test coverage detected