Files
podman/pkg/machine/e2e/config_help_test.go
2025-10-01 10:42:08 -04:00

12 lines
178 B
Go

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