mirror of
https://github.com/containers/podman.git
synced 2025-10-15 02:06:42 +08:00
13 lines
207 B
Go
13 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
|
|
}
|