(self)
| 36 | """End-to-end integration test exercising the full v2 pipeline.""" |
| 37 | |
| 38 | def setup_method(self): |
| 39 | self.tmp = tempfile.NamedTemporaryFile(suffix=".db", delete=False) |
| 40 | self.store = GraphStore(self.tmp.name) |
| 41 | self._seed_realistic_graph() |
| 42 | |
| 43 | def teardown_method(self): |
| 44 | self.store.close() |
nothing calls this directly
no test coverage detected