(tmp_path)
| 116 | |
| 117 | |
| 118 | def test_frontmatter_not_mapping(tmp_path): |
| 119 | sd = _write_skill(tmp_path, "list-fm", frontmatter="- one\n- two") |
| 120 | result = validate_skill(sd) |
| 121 | assert not result.passed |
| 122 | assert any("mapping" in e for e in result.errors) |
| 123 | |
| 124 | |
| 125 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected