(tmp_path)
| 47 | |
| 48 | |
| 49 | def test_read_description_extracts_field(tmp_path): |
| 50 | skill_dir = _make_skill(tmp_path, description="Distill thoughts about transformers.") |
| 51 | assert _read_description(skill_dir) == "Distill thoughts about transformers." |
| 52 | |
| 53 | |
| 54 | def test_read_description_raises_on_missing_frontmatter(tmp_path): |
nothing calls this directly
no test coverage detected