mirror of https://github.com/containers/podman.git
19 lines
532 B
Go
19 lines
532 B
Go
package e2e_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
. "github.com/onsi/gomega/gexec"
|
|
)
|
|
|
|
var _ = Describe("podman help", func() {
|
|
It("podman usage base command is podman or podman-remote, without extension ", func() {
|
|
helpSession, err := mb.setCmd(new(helpMachine)).run()
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(helpSession).Should(Exit(0))
|
|
|
|
// Verify `.exe` suffix doesn't present in the usage command string
|
|
Expect(helpSession.outputToString()).ToNot(ContainSubstring(".exe"))
|
|
})
|
|
})
|