()
| 191 | |
| 192 | |
| 193 | def test_parse_frontmatter_happy_path(): |
| 194 | text = "---\nname: foo\ndescription: bar\n---\nbody text" |
| 195 | meta, body = _parse_frontmatter(text) |
| 196 | assert meta == {"name": "foo", "description": "bar"} |
| 197 | assert body == "body text" |
| 198 | |
| 199 | |
| 200 | def test_parse_frontmatter_returns_empty_when_no_delim(): |
nothing calls this directly
no test coverage detected