()
| 63 | |
| 64 | |
| 65 | def test_remove_source_noop_malformed_brackets(): |
| 66 | text = "---\nsources: summaries/a.md\n---\nbody\n" |
| 67 | rewritten, empty = _remove_source_from_frontmatter(text, "summaries/a.md") |
| 68 | assert rewritten == text |
| 69 | assert empty is False |
| 70 | |
| 71 | |
| 72 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected