()
| 56 | |
| 57 | |
| 58 | def test_remove_source_noop_without_frontmatter(): |
| 59 | text = "# No frontmatter\n\nbody only\n" |
| 60 | rewritten, empty = _remove_source_from_frontmatter(text, "summaries/a.md") |
| 61 | assert rewritten == text |
| 62 | assert empty is False |
| 63 | |
| 64 | |
| 65 | def test_remove_source_noop_malformed_brackets(): |
nothing calls this directly
no test coverage detected