Test compatibility check with valid version.
(self, pack_dir, temp_dir)
| 705 | assert manager.get_pack("nonexistent") is None |
| 706 | |
| 707 | def test_check_compatibility_valid(self, pack_dir, temp_dir): |
| 708 | """Test compatibility check with valid version.""" |
| 709 | manager = PresetManager(temp_dir) |
| 710 | manifest = PresetManifest(pack_dir / "preset.yml") |
| 711 | assert manager.check_compatibility(manifest, "0.1.5") is True |
| 712 | |
| 713 | def test_check_compatibility_prerelease(self, pack_dir, temp_dir): |
| 714 | """Test compatibility check allows prereleases and fails on boundary.""" |
nothing calls this directly
no test coverage detected