(t *testing.T)
| 168 | } |
| 169 | |
| 170 | func TestNoLabelInList(t *testing.T) { |
| 171 | t.Parallel() |
| 172 | |
| 173 | NewFormatterTest(t, |
| 174 | WithExecutorOptions( |
| 175 | task.WithDir("testdata/label_list"), |
| 176 | ), |
| 177 | WithListOptions(task.ListOptions{ |
| 178 | ListOnlyTasksWithDescriptions: true, |
| 179 | }), |
| 180 | ) |
| 181 | } |
| 182 | |
| 183 | // task -al case 1: listAll list all tasks |
| 184 | func TestListAllShowsNoDesc(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…