(t *testing.T)
| 319 | } |
| 320 | |
| 321 | func TestCmdUpdateTaskWaitingMutuallyExclusive(t *testing.T) { |
| 322 | setupFlowRoot(t) |
| 323 | seedTask(t, "ut-wait-x") |
| 324 | if rc := cmdUpdate([]string{"task", "ut-wait-x", |
| 325 | "--waiting", "Carol", "--clear-waiting"}); rc != 2 { |
| 326 | t.Errorf("rc=%d, want 2 when both given", rc) |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | func TestCmdUpdateProjectPriority(t *testing.T) { |
| 331 | setupFlowRoot(t) |
nothing calls this directly
no test coverage detected