(tmp_path)
| 33 | |
| 34 | |
| 35 | def test_save_creates_parent_dirs(tmp_path): |
| 36 | config_path = tmp_path / "nested" / "dir" / "config.yaml" |
| 37 | save_config(config_path, DEFAULT_CONFIG) |
| 38 | assert config_path.exists() |
| 39 | |
| 40 | |
| 41 | def test_save_load_roundtrip(tmp_path): |
nothing calls this directly
no test coverage detected