(t *testing.T)
| 1381 | } |
| 1382 | |
| 1383 | func TestIncludesCallingRoot(t *testing.T) { |
| 1384 | t.Parallel() |
| 1385 | |
| 1386 | tt := fileContentTest{ |
| 1387 | Dir: "testdata/includes_call_root_task", |
| 1388 | Target: "included:call-root", |
| 1389 | TrimSpace: true, |
| 1390 | Files: map[string]string{ |
| 1391 | "root_task.txt": "root task", |
| 1392 | }, |
| 1393 | } |
| 1394 | t.Run("", func(t *testing.T) { |
| 1395 | t.Parallel() |
| 1396 | tt.Run(t) |
| 1397 | }) |
| 1398 | } |
| 1399 | |
| 1400 | func TestIncludesOptional(t *testing.T) { |
| 1401 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…