(t *testing.T)
| 1260 | } |
| 1261 | |
| 1262 | func TestIncludesEmptyMain(t *testing.T) { |
| 1263 | t.Parallel() |
| 1264 | |
| 1265 | tt := fileContentTest{ |
| 1266 | Dir: "testdata/includes_empty", |
| 1267 | Target: "included:default", |
| 1268 | TrimSpace: true, |
| 1269 | Files: map[string]string{ |
| 1270 | "file.txt": "default", |
| 1271 | }, |
| 1272 | } |
| 1273 | t.Run("", func(t *testing.T) { |
| 1274 | t.Parallel() |
| 1275 | tt.Run(t) |
| 1276 | }) |
| 1277 | } |
| 1278 | |
| 1279 | func TestIncludesHttp(t *testing.T) { |
| 1280 | enableExperimentForTest(t, &experiments.RemoteTaskfiles, 1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…