mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00
Refactor tests when checking for error exit codes
Rather than checking for non-zero, we need to check for >0 to distinguish between timeouts and error exit codes. Signed-off-by: Jhon Honce <jhonce@redhat.com>
This commit is contained in:
@ -37,19 +37,19 @@ var _ = Describe("Podman generate systemd", func() {
|
||||
It("podman generate systemd on bogus container/pod", func() {
|
||||
session := podmanTest.Podman([]string{"generate", "systemd", "foobar"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Not(Equal(0)))
|
||||
Expect(session).To(ExitWithError())
|
||||
})
|
||||
|
||||
It("podman generate systemd bad restart policy", func() {
|
||||
session := podmanTest.Podman([]string{"generate", "systemd", "--restart-policy", "never", "foobar"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Not(Equal(0)))
|
||||
Expect(session).To(ExitWithError())
|
||||
})
|
||||
|
||||
It("podman generate systemd bad timeout value", func() {
|
||||
session := podmanTest.Podman([]string{"generate", "systemd", "--timeout", "-1", "foobar"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Not(Equal(0)))
|
||||
Expect(session).To(ExitWithError())
|
||||
})
|
||||
|
||||
It("podman generate systemd good timeout value", func() {
|
||||
|
Reference in New Issue
Block a user