()
| 92 | |
| 93 | |
| 94 | def test_resolve_source_errors(): |
| 95 | src, err = _resolve_source({}, None) |
| 96 | assert src is None and "provide one" in err |
| 97 | src, err = _resolve_source({"name": "nope"}, None) |
| 98 | assert src is None and "no saved workflow" in err |
| 99 | |
| 100 | |
| 101 | # ── tool ────────────────────────────────────────────────────────────────────── |
nothing calls this directly
no test coverage detected