task -al case 2: !listAll list some tasks (only those with desc)
(t *testing.T)
| 196 | |
| 197 | // task -al case 2: !listAll list some tasks (only those with desc) |
| 198 | func TestListCanListDescOnly(t *testing.T) { |
| 199 | t.Parallel() |
| 200 | |
| 201 | NewFormatterTest(t, |
| 202 | WithExecutorOptions( |
| 203 | task.WithDir("testdata/list_mixed_desc"), |
| 204 | ), |
| 205 | WithListOptions(task.ListOptions{ |
| 206 | ListOnlyTasksWithDescriptions: true, |
| 207 | }), |
| 208 | ) |
| 209 | } |
| 210 | |
| 211 | func TestListDescInterpolation(t *testing.T) { |
| 212 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…