(self, tmp_path: Path)
| 87 | |
| 88 | class TestSceneStore: |
| 89 | def _make_store(self, tmp_path: Path) -> SceneStore: |
| 90 | return SceneStore(path=tmp_path / "scenes.json") |
| 91 | |
| 92 | def test_add_and_get(self, tmp_path): |
| 93 | store = self._make_store(tmp_path) |
no test coverage detected