MCPcopy Index your code
hub / github.com/tirth8205/code-review-graph / setup_method

Method setup_method

tests/test_tools.py:30–33  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

28
29class TestTools:
30 def setup_method(self):
31 self.tmp = tempfile.NamedTemporaryFile(suffix=".db", delete=False)
32 self.store = GraphStore(self.tmp.name)
33 self._seed_data()
34
35 def teardown_method(self):
36 self.store.close()

Callers

nothing calls this directly

Calls 2

_seed_dataMethod · 0.95
GraphStoreClass · 0.90

Tested by

no test coverage detected