(self, tmp_path)
| 107 | assert store.get("INTIMATE") is not None |
| 108 | |
| 109 | def test_remove(self, tmp_path): |
| 110 | store = self._make_store(tmp_path) |
| 111 | store.add(SceneConfig(name="test", primary="a/b")) |
| 112 | assert store.remove("test") is True |
| 113 | assert store.get("test") is None |
| 114 | assert store.remove("nonexistent") is False |
| 115 | |
| 116 | def test_list_sorted(self, tmp_path): |
| 117 | store = self._make_store(tmp_path) |
nothing calls this directly
no test coverage detected