(self, tmp_path)
| 140 | |
| 141 | class TestFindMissingEntries: |
| 142 | def test_no_missing_entries(self, tmp_path): |
| 143 | wiki = _make_wiki(tmp_path) |
| 144 | raw = tmp_path / "raw" |
| 145 | raw.mkdir() |
| 146 | (raw / "paper.pdf").write_bytes(b"PDF content") |
| 147 | (wiki / "sources" / "paper.md").write_text("# Paper") |
| 148 | |
| 149 | result = find_missing_entries(raw, wiki) |
| 150 | |
| 151 | assert result == [] |
| 152 | |
| 153 | def test_detects_missing_entry(self, tmp_path): |
| 154 | wiki = _make_wiki(tmp_path) |
nothing calls this directly
no test coverage detected