(tmp_path: Path, body: str = "# Safe skill")
| 24 | |
| 25 | |
| 26 | def _write_skill(tmp_path: Path, body: str = "# Safe skill") -> Path: |
| 27 | (tmp_path / "SKILL.md").write_text(f"---\nname: mcp-test\n---\n{body}", encoding="utf-8") |
| 28 | return tmp_path |
| 29 | |
| 30 | |
| 31 | async def test_run_scan_returns_structured_verdict( |
no outgoing calls
no test coverage detected