(tmp_path)
| 107 | # ── graphify export wiki ───────────────────────────────────────────────────── |
| 108 | |
| 109 | def test_export_wiki_creates_articles(tmp_path): |
| 110 | _make_graph(tmp_path) |
| 111 | r = _run(["export", "wiki"], tmp_path) |
| 112 | assert r.returncode == 0, r.stderr |
| 113 | wiki = tmp_path / "graphify-out" / "wiki" |
| 114 | assert wiki.exists() |
| 115 | assert (wiki / "index.md").exists() |
| 116 | |
| 117 | |
| 118 | def test_export_wiki_accepts_edges_only_graph_json(tmp_path): |
nothing calls this directly
no test coverage detected