()
| 2282 | from specify_cli.workflows.engine import RunState, WorkflowEngine |
| 2283 | |
| 2284 | def fresh(): |
| 2285 | state = RunState(run_id="r", workflow_id="w", project_root=tmp_path) |
| 2286 | state.status = RunStatus.RUNNING |
| 2287 | return WorkflowEngine(project_root=tmp_path), StepContext(), state |
| 2288 | |
| 2289 | template = {"id": "impl", "type": "does-not-exist"} |
| 2290 | e1, c1, s1 = fresh() |
nothing calls this directly
no test coverage detected