(t *testing.T)
| 1536 | } |
| 1537 | |
| 1538 | func TestNoMethodFails(t *testing.T) { |
| 1539 | t.Parallel() |
| 1540 | |
| 1541 | _, err := runEnvbuilder(t, runOpts{env: []string{}}) |
| 1542 | require.ErrorContains(t, err, envbuilder.ErrNoFallbackImage.Error()) |
| 1543 | } |
| 1544 | |
| 1545 | func TestDockerfileBuildContext(t *testing.T) { |
| 1546 | t.Parallel() |
nothing calls this directly
no test coverage detected