(t *testing.T)
| 367 | } |
| 368 | |
| 369 | func TestCmdUpdateUnknownProject(t *testing.T) { |
| 370 | setupFlowRoot(t) |
| 371 | if rc := cmdUpdate([]string{"project", "nope", "--priority", "high"}); rc != 1 { |
| 372 | t.Errorf("rc=%d, want 1 for unknown project", rc) |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | func TestCmdUpdateTaskDueDate(t *testing.T) { |
| 377 | setupFlowRoot(t) |
nothing calls this directly
no test coverage detected