(tmp_path)
| 13 | # --- _notify_only --- |
| 14 | |
| 15 | def test_notify_only_creates_flag(tmp_path): |
| 16 | _notify_only(tmp_path) |
| 17 | flag = tmp_path / "graphify-out" / "needs_update" |
| 18 | assert flag.exists() |
| 19 | assert flag.read_text() == "1" |
| 20 | |
| 21 | def test_notify_only_creates_flag_dir(tmp_path): |
| 22 | # graphify-out dir does not exist yet |
nothing calls this directly
no test coverage detected