(t *testing.T)
| 2437 | } |
| 2438 | |
| 2439 | func TestIncludeWithVarsInInclude(t *testing.T) { |
| 2440 | t.Parallel() |
| 2441 | |
| 2442 | const dir = "testdata/include_with_vars_inside_include" |
| 2443 | var buff bytes.Buffer |
| 2444 | e := task.Executor{ |
| 2445 | Dir: dir, |
| 2446 | Stdout: &buff, |
| 2447 | Stderr: &buff, |
| 2448 | } |
| 2449 | require.NoError(t, e.Setup()) |
| 2450 | } |
| 2451 | |
| 2452 | func TestIncludedVarsMultiLevel(t *testing.T) { |
| 2453 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…