(tmp_path)
| 46 | |
| 47 | |
| 48 | def test_load_from_nonexistent_dir(tmp_path): |
| 49 | registry = EntityRegistry.load(config_dir=tmp_path) |
| 50 | assert registry.people == {} |
| 51 | assert registry.projects == [] |
| 52 | assert registry.mode == "personal" |
| 53 | assert registry.ambiguous_flags == [] |
| 54 | |
| 55 | |
| 56 | def test_save_and_load_roundtrip(tmp_path): |