(self, tmp_path)
| 949 | assert (summaries / "paper.md").read_text() == original |
| 950 | |
| 951 | def test_skips_if_file_missing(self, tmp_path): |
| 952 | wiki = tmp_path / "wiki" |
| 953 | wiki.mkdir() |
| 954 | # Should not raise |
| 955 | _backlink_summary(wiki, "nonexistent", ["attention"]) |
| 956 | |
| 957 | def test_merges_into_existing_section(self, tmp_path): |
| 958 | """Second add should merge into existing ## Related Concepts, not duplicate.""" |
nothing calls this directly
no test coverage detected