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

Function test_export_obsidian_custom_dir

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

Source from the content-addressed store, hash-verified

96
97
98def test_export_obsidian_custom_dir(tmp_path):
99 _make_graph(tmp_path)
100 custom = tmp_path / "my-vault"
101 r = _run(["export", "obsidian", "--dir", str(custom)], tmp_path)
102 assert r.returncode == 0, r.stderr
103 assert custom.exists()
104 assert len(list(custom.glob("*.md"))) > 0
105
106
107# ── graphify export wiki ─────────────────────────────────────────────────────

Callers

nothing calls this directly

Calls 2

_make_graphFunction · 0.70
_runFunction · 0.70

Tested by

no test coverage detected