(tmp_path)
| 96 | |
| 97 | |
| 98 | def 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 ───────────────────────────────────────────────────── |
nothing calls this directly
no test coverage detected