(tmp_path)
| 177 | |
| 178 | |
| 179 | def test_description_missing(tmp_path): |
| 180 | sd = _write_skill(tmp_path, "no-desc", frontmatter="name: no-desc") |
| 181 | result = validate_skill(sd) |
| 182 | assert not result.passed |
| 183 | assert any("description" in e for e in result.errors) |
| 184 | |
| 185 | |
| 186 | def test_description_too_long(tmp_path): |
nothing calls this directly
no test coverage detected