(self, tmp_path)
| 558 | |
| 559 | class TestReadConceptBriefs: |
| 560 | def test_empty_wiki(self, tmp_path): |
| 561 | wiki = tmp_path / "wiki" |
| 562 | wiki.mkdir() |
| 563 | (wiki / "concepts").mkdir() |
| 564 | assert _read_concept_briefs(wiki) == "(none yet)" |
| 565 | |
| 566 | def test_no_concepts_dir(self, tmp_path): |
| 567 | wiki = tmp_path / "wiki" |
nothing calls this directly
no test coverage detected