Files
podman/pkg/machine/e2e/config_help_test.go
Leo Liu a91aa36367 Remove .exe suffix if any
Signed-off-by: Leo Liu <silver886@users.noreply.github.com>

Add comment

In shell completion, there is `.exe` suffix on Windows and this does not provide same experience across platforms, #16499

Signed-off-by: Leo Liu <silver886@users.noreply.github.com>

Create unit test for `.exe` suffix removal

Signed-off-by: Leo Liu <11664880+silver886@users.noreply.github.com>

Update comments

Signed-off-by: Leo Liu <11664880+silver886@users.noreply.github.com>
2025-01-14 11:53:19 -08: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
}