(t *testing.T)
| 178 | } |
| 179 | |
| 180 | func TestCmdUpdateUnknownTarget(t *testing.T) { |
| 181 | setupFlowRoot(t) |
| 182 | if rc := cmdUpdate([]string{"project", "foo"}); rc != 2 { |
| 183 | t.Errorf("rc=%d, want 2 for unknown update target", rc) |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | func TestCmdUpdateTaskStatusRollback(t *testing.T) { |
| 188 | setupFlowRoot(t) |
nothing calls this directly
no test coverage detected