MCPcopy Create free account
hub / github.com/Graphify-Labs/graphify / test_export_wiki_creates_articles

Function test_export_wiki_creates_articles

tests/test_cli_export.py:109–115  ·  view source on GitHub ↗
(tmp_path)

Source from the content-addressed store, hash-verified

107# ── graphify export wiki ─────────────────────────────────────────────────────
108
109def 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
118def test_export_wiki_accepts_edges_only_graph_json(tmp_path):

Callers

nothing calls this directly

Calls 2

_make_graphFunction · 0.70
_runFunction · 0.70

Tested by

no test coverage detected