mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 09:25:43 +00:00
12 lines
207 B
Go
12 lines
207 B
Go
package e2e_test
|
|
|
|
type fakeCompose struct {
|
|
cmd []string
|
|
}
|
|
|
|
func (f *fakeCompose) buildCmd(_ *machineTestBuilder) []string {
|
|
cmd := []string{"compose"}
|
|
cmd = append(cmd, "env")
|
|
f.cmd = cmd
|
|
return cmd
|
|
}
|