(self, tmp_path)
| 326 | assert any("ghost" in issue for issue in result) |
| 327 | |
| 328 | def test_page_not_in_index(self, tmp_path): |
| 329 | wiki = _make_wiki(tmp_path) |
| 330 | (wiki / "summaries" / "unlisted.md").write_text("# Unlisted") |
| 331 | # index.md has no mention of unlisted |
| 332 | |
| 333 | result = check_index_sync(wiki) |
| 334 | |
| 335 | assert any("unlisted" in issue for issue in result) |
| 336 | |
| 337 | def test_entity_page_not_in_index(self, tmp_path): |
| 338 | wiki = _make_wiki(tmp_path) |
nothing calls this directly
no test coverage detected