(self, tmp_path)
| 641 | assert "- old: Old concept without brief field." in result |
| 642 | |
| 643 | def test_reads_description_field(self, tmp_path): |
| 644 | wiki = tmp_path / "wiki" |
| 645 | concepts = wiki / "concepts" |
| 646 | concepts.mkdir(parents=True) |
| 647 | (concepts / "attention.md").write_text( |
| 648 | '---\nsources: ["p.pdf"]\ndescription: "Selective focus"\n---\n\n# A\n', |
| 649 | encoding="utf-8", |
| 650 | ) |
| 651 | assert "- attention: Selective focus" in _read_concept_briefs(wiki) |
| 652 | |
| 653 | |
| 654 | class TestReadEntityBriefs: |
nothing calls this directly
no test coverage detected