(self, tmp_path)
| 564 | assert _read_concept_briefs(wiki) == "(none yet)" |
| 565 | |
| 566 | def test_no_concepts_dir(self, tmp_path): |
| 567 | wiki = tmp_path / "wiki" |
| 568 | wiki.mkdir() |
| 569 | assert _read_concept_briefs(wiki) == "(none yet)" |
| 570 | |
| 571 | def test_reads_briefs_with_frontmatter(self, tmp_path): |
| 572 | wiki = tmp_path / "wiki" |
nothing calls this directly
no test coverage detected