(t *testing.T)
| 1054 | } |
| 1055 | |
| 1056 | func TestIncludesMultiLevel(t *testing.T) { |
| 1057 | t.Parallel() |
| 1058 | |
| 1059 | tt := fileContentTest{ |
| 1060 | Dir: "testdata/includes_multi_level", |
| 1061 | Target: "default", |
| 1062 | TrimSpace: true, |
| 1063 | Files: map[string]string{ |
| 1064 | "called_one.txt": "one", |
| 1065 | "called_two.txt": "two", |
| 1066 | "called_three.txt": "three", |
| 1067 | }, |
| 1068 | } |
| 1069 | t.Run("", func(t *testing.T) { |
| 1070 | t.Parallel() |
| 1071 | tt.Run(t) |
| 1072 | }) |
| 1073 | } |
| 1074 | |
| 1075 | func TestIncludesRemote(t *testing.T) { |
| 1076 | enableExperimentForTest(t, &experiments.RemoteTaskfiles, 1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…