(tmp_path)
| 243 | |
| 244 | |
| 245 | def test_wikilink_resolves(tmp_path): |
| 246 | sd = _write_skill( |
| 247 | tmp_path, |
| 248 | "with-ref", |
| 249 | body="See [[references/topic.md]] for details.\n", |
| 250 | refs={"topic.md": "# topic\n"}, |
| 251 | ) |
| 252 | result = validate_skill(sd) |
| 253 | assert result.passed, result.errors |
| 254 | |
| 255 | |
| 256 | def test_wikilink_missing_target(tmp_path): |
nothing calls this directly
no test coverage detected