(self, tmp_path)
| 348 | ) |
| 349 | |
| 350 | def test_missing_index_md(self, tmp_path): |
| 351 | wiki = tmp_path / "wiki" |
| 352 | wiki.mkdir() |
| 353 | |
| 354 | result = check_index_sync(wiki) |
| 355 | |
| 356 | assert any("does not exist" in issue for issue in result) |
| 357 | |
| 358 | |
| 359 | class TestRunStructuralLint: |
nothing calls this directly
no test coverage detected