(t *testing.T)
| 21 | ) |
| 22 | |
| 23 | func TestComposeModel(t *testing.T) { |
| 24 | if _, err := findPluginExecutable(DockerModelExecutableName); err != nil { |
| 25 | t.Skip("docker-model plugin not available") |
| 26 | } |
| 27 | c := NewParallelCLI(t) |
| 28 | defer c.cleanupWithDown(t, "model-test") |
| 29 | |
| 30 | c.RunDockerComposeCmd(t, "-p", "model-test", "-f", "./fixtures/model/compose.yaml", "run", "--rm", "test", "sh", "-c", "curl ${FOO_URL}") |
| 31 | } |
nothing calls this directly
no test coverage detected