1
0
mirror of https://github.com/containers/podman.git synced 2026-02-05 06:45:31 +01:00
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
}