podman-build/pkg/machine/e2e/config_help_test.go
2025-10-11 12:30:35 +09:00

12 lines
178 B
Go

package e2e_test
type helpMachine struct {
cmd []string
}
func (i *helpMachine) buildCmd(m *machineTestBuilder) []string {
cmd := []string{"help"}
i.cmd = cmd
return cmd
}