(t *testing.T)
| 600 | } |
| 601 | |
| 602 | func TestBuildDependentImageWithProfile(t *testing.T) { |
| 603 | c := NewParallelCLI(t) |
| 604 | |
| 605 | t.Cleanup(func() { |
| 606 | c.RunDockerComposeCmd(t, "-f", "fixtures/build-test/profiles/compose.yaml", "down", "--rmi=local") |
| 607 | }) |
| 608 | |
| 609 | res := c.RunDockerComposeCmd(t, "-f", "fixtures/build-test/profiles/compose.yaml", "build", "secret-build-test") |
| 610 | out := res.Combined() |
| 611 | assert.Check(t, strings.Contains(out, "secret-build-test Built")) |
| 612 | } |
| 613 | |
| 614 | func TestBuildTLS(t *testing.T) { |
| 615 | t.Helper() |
nothing calls this directly
no test coverage detected