mirror of
https://github.com/containers/podman.git
synced 2025-10-19 04:03:23 +08:00

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>
12 lines
178 B
Go
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
|
|
}
|