(self, tmp_path)
| 68 | """Test PlanningContext initialization.""" |
| 69 | |
| 70 | def test_default_plans_dir(self, tmp_path): |
| 71 | tm = FakeToolManager() |
| 72 | ctx = PlanningContext(tm, plans_dir=tmp_path / "plans") |
| 73 | assert ctx.plans_dir.exists() |
| 74 | |
| 75 | def test_graph_store_created(self, tmp_path): |
| 76 | tm = FakeToolManager() |
nothing calls this directly
no test coverage detected