Test listing when no packs installed.
(self, project_dir)
| 686 | assert installed[0]["template_count"] == 1 |
| 687 | |
| 688 | def test_list_installed_empty(self, project_dir): |
| 689 | """Test listing when no packs installed.""" |
| 690 | manager = PresetManager(project_dir) |
| 691 | assert manager.list_installed() == [] |
| 692 | |
| 693 | def test_get_pack(self, project_dir, pack_dir): |
| 694 | """Test getting a specific installed pack.""" |
nothing calls this directly
no test coverage detected