(tmp_path)
| 85 | |
| 86 | |
| 87 | def test_resolve_source_named(tmp_path): |
| 88 | wf_dir = tmp_path / ".claude" / "workflows" |
| 89 | wf_dir.mkdir(parents=True) |
| 90 | (wf_dir / "demo.py").write_text("named body", encoding="utf-8") |
| 91 | assert _resolve_source({"name": "demo"}, tmp_path) == ("named body", None) |
| 92 | |
| 93 | |
| 94 | def test_resolve_source_errors(): |
nothing calls this directly
no test coverage detected