(t *testing.T)
| 1455 | } |
| 1456 | |
| 1457 | func TestIncludesFromCustomTaskfile(t *testing.T) { |
| 1458 | t.Parallel() |
| 1459 | |
| 1460 | tt := fileContentTest{ |
| 1461 | Entrypoint: "testdata/includes_yaml/Custom.ext", |
| 1462 | Dir: "testdata/includes_yaml", |
| 1463 | Target: "default", |
| 1464 | TrimSpace: true, |
| 1465 | Files: map[string]string{ |
| 1466 | "main.txt": "main", |
| 1467 | "included_with_yaml_extension.txt": "included_with_yaml_extension", |
| 1468 | "included_with_custom_file.txt": "included_with_custom_file", |
| 1469 | }, |
| 1470 | } |
| 1471 | t.Run("", func(t *testing.T) { |
| 1472 | t.Parallel() |
| 1473 | tt.Run(t) |
| 1474 | }) |
| 1475 | } |
| 1476 | |
| 1477 | func TestIncludesRelativePath(t *testing.T) { |
| 1478 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…