Test removing a pack that doesn't exist.
(self, temp_dir)
| 356 | assert not registry.is_installed("test-pack") |
| 357 | |
| 358 | def test_remove_nonexistent(self, temp_dir): |
| 359 | """Test removing a pack that doesn't exist.""" |
| 360 | packs_dir = temp_dir / "packs" |
| 361 | packs_dir.mkdir() |
| 362 | registry = PresetRegistry(packs_dir) |
| 363 | registry.remove("nonexistent") # Should not raise |
| 364 | |
| 365 | def test_list(self, temp_dir): |
| 366 | """Test listing all packs.""" |
nothing calls this directly
no test coverage detected