(t *testing.T)
| 227 | } |
| 228 | |
| 229 | func TestEmptyTaskfile(t *testing.T) { |
| 230 | t.Parallel() |
| 231 | NewExecutorTest(t, |
| 232 | WithExecutorOptions( |
| 233 | task.WithDir("testdata/empty_taskfile"), |
| 234 | ), |
| 235 | WithSetupError(), |
| 236 | WithFixtureTemplating(), |
| 237 | ) |
| 238 | } |
| 239 | |
| 240 | func TestEnv(t *testing.T) { |
| 241 | t.Setenv("QUX", "from_os") |
nothing calls this directly
no test coverage detected
searching dependent graphs…