Create a minimal wiki directory structure.
(tmp_path: Path)
| 24 | |
| 25 | |
| 26 | def _make_wiki(tmp_path: Path) -> Path: |
| 27 | """Create a minimal wiki directory structure.""" |
| 28 | wiki = tmp_path / "wiki" |
| 29 | (wiki / "sources").mkdir(parents=True) |
| 30 | (wiki / "summaries").mkdir(parents=True) |
| 31 | (wiki / "concepts").mkdir(parents=True) |
| 32 | (wiki / "reports").mkdir(parents=True) |
| 33 | (wiki / "index.md").write_text("# Index\n\n## Documents\n\n## Concepts\n", encoding="utf-8") |
| 34 | return wiki |
| 35 | |
| 36 | |
| 37 | class TestFindBrokenLinks: |
no outgoing calls
no test coverage detected