(tmp_path)
| 88 | |
| 89 | |
| 90 | def test_skill_directory_missing(tmp_path): |
| 91 | result = validate_skill(tmp_path / "nope") |
| 92 | assert not result.passed |
| 93 | assert any("does not exist" in e for e in result.errors) |
| 94 | |
| 95 | |
| 96 | def test_missing_skill_md(tmp_path): |
nothing calls this directly
no test coverage detected