(t *testing.T)
| 45 | } |
| 46 | |
| 47 | func TestRunEnvFile(t *testing.T) { |
| 48 | c := NewParallelCLI(t) |
| 49 | const projectName = "run-dotenv" |
| 50 | defer c.cleanupWithDown(t, projectName) |
| 51 | |
| 52 | res := c.RunDockerComposeCmd(t, "-p", projectName, "--project-directory", "./fixtures/env_file", "run", "--rm", "serviceC", "env") |
| 53 | res.Assert(t, icmd.Expected{Out: "FOO=BAR"}) |
| 54 | } |
nothing calls this directly
no test coverage detected