mirror of
https://github.com/containers/podman.git
synced 2025-11-28 17:18:58 +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
|
|
}
|