(t *testing.T)
| 58 | } |
| 59 | |
| 60 | func TestCmdDoneUnknownRef(t *testing.T) { |
| 61 | setupFlowRoot(t) |
| 62 | stubClaudeRunner(t, nil) |
| 63 | if rc := cmdDone([]string{"nope"}); rc == 0 { |
| 64 | t.Error("expected rc!=0 for unknown task") |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | func TestCmdDoneIdempotent(t *testing.T) { |
| 69 | setupFlowRoot(t) |
nothing calls this directly
no test coverage detected