Test removing a pack that doesn't exist.
(self, project_dir)
| 668 | assert not installed_dir.exists() |
| 669 | |
| 670 | def test_remove_nonexistent(self, project_dir): |
| 671 | """Test removing a pack that doesn't exist.""" |
| 672 | manager = PresetManager(project_dir) |
| 673 | result = manager.remove("nonexistent") |
| 674 | assert result is False |
| 675 | |
| 676 | def test_list_installed(self, project_dir, pack_dir): |
| 677 | """Test listing installed packs.""" |
nothing calls this directly
no test coverage detected