(t *testing.T)
| 1362 | } |
| 1363 | |
| 1364 | func TestIncludesDependencies(t *testing.T) { |
| 1365 | t.Parallel() |
| 1366 | |
| 1367 | tt := fileContentTest{ |
| 1368 | Dir: "testdata/includes_deps", |
| 1369 | Target: "default", |
| 1370 | TrimSpace: true, |
| 1371 | Files: map[string]string{ |
| 1372 | "default.txt": "default", |
| 1373 | "called_dep.txt": "called_dep", |
| 1374 | "called_task.txt": "called_task", |
| 1375 | }, |
| 1376 | } |
| 1377 | t.Run("", func(t *testing.T) { |
| 1378 | t.Parallel() |
| 1379 | tt.Run(t) |
| 1380 | }) |
| 1381 | } |
| 1382 | |
| 1383 | func TestIncludesCallingRoot(t *testing.T) { |
| 1384 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…