mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

Followup to [1]#22270: wherever possible/practical, extend command error checks to include explicit exit status codes and error strings. Just trying to shrink down #22346 to a manageable, reviewable size. Signed-off-by: Ed Santiago <santiago@redhat.com>
23 lines
533 B
Go
23 lines
533 B
Go
package integration
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
. "github.com/containers/podman/v5/test/utils"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Podman negative command-line", func() {
|
|
|
|
It("podman snuffleupagus exits non-zero", func() {
|
|
session := podmanTest.Podman([]string{"snuffleupagus"})
|
|
session.WaitWithDefaultTimeout()
|
|
cmdName := "podman"
|
|
if IsRemote() {
|
|
cmdName += "-remote"
|
|
}
|
|
Expect(session).To(ExitWithError(125, fmt.Sprintf("unrecognized command `%s snuffleupagus`", cmdName)))
|
|
})
|
|
})
|