(tmp_path: Path)
| 4 | |
| 5 | |
| 6 | def _wiki(tmp_path: Path) -> Path: |
| 7 | wiki = tmp_path / "wiki" |
| 8 | for sub in ("summaries", "concepts", "entities", "reports", "sources"): |
| 9 | (wiki / sub).mkdir(parents=True) |
| 10 | (wiki / "index.md").write_text("# Index\n", encoding="utf-8") |
| 11 | return wiki |
| 12 | |
| 13 | |
| 14 | def test_build_graph_nodes_edges_types(tmp_path): |
no outgoing calls
no test coverage detected