diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-17 15:21:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-17 15:21:56 +0200 |
commit | d7cbcfadd07e9c79831e51de294b307b00292d49 (patch) | |
tree | 3beb54ca1575600d2d47d1b0aa552513fee40cb6 /test/e2e/network_create_test.go | |
parent | 392846c23a83888be4be817dcb872794090d298d (diff) | |
parent | 60d0be17fc55404929ad24d861f318968997458f (diff) | |
download | podman-d7cbcfadd07e9c79831e51de294b307b00292d49.tar.gz podman-d7cbcfadd07e9c79831e51de294b307b00292d49.tar.bz2 podman-d7cbcfadd07e9c79831e51de294b307b00292d49.zip |
Merge pull request #4199 from jwhonce/wip/exit_with_error
Refactor tests when checking for error exit codes
Diffstat (limited to 'test/e2e/network_create_test.go')
-rw-r--r-- | test/e2e/network_create_test.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/e2e/network_create_test.go b/test/e2e/network_create_test.go index 264219178..b83757cc0 100644 --- a/test/e2e/network_create_test.go +++ b/test/e2e/network_create_test.go @@ -182,19 +182,19 @@ var _ = Describe("Podman network create", func() { It("podman network create with invalid subnet", func() { nc := podmanTest.Podman([]string{"network", "create", "--subnet", "10.11.12.0/17000", "fail"}) nc.WaitWithDefaultTimeout() - Expect(nc.ExitCode()).ToNot(BeZero()) + Expect(nc).To(ExitWithError()) }) It("podman network create with invalid IP", func() { nc := podmanTest.Podman([]string{"network", "create", "--subnet", "10.11.0/17000", "fail"}) nc.WaitWithDefaultTimeout() - Expect(nc.ExitCode()).ToNot(BeZero()) + Expect(nc).To(ExitWithError()) }) It("podman network create with invalid gateway for subnet", func() { nc := podmanTest.Podman([]string{"network", "create", "--subnet", "10.11.12.0/24", "--gateway", "192.168.1.1", "fail"}) nc.WaitWithDefaultTimeout() - Expect(nc.ExitCode()).ToNot(BeZero()) + Expect(nc).To(ExitWithError()) }) It("podman network create two networks with same name should fail", func() { @@ -205,13 +205,13 @@ var _ = Describe("Podman network create", func() { ncFail := podmanTest.Podman([]string{"network", "create", "samename"}) ncFail.WaitWithDefaultTimeout() - Expect(ncFail.ExitCode()).ToNot(BeZero()) + Expect(ncFail).To(ExitWithError()) }) It("podman network create with invalid network name", func() { nc := podmanTest.Podman([]string{"network", "create", "foo "}) nc.WaitWithDefaultTimeout() - Expect(nc.ExitCode()).ToNot(BeZero()) + Expect(nc).To(ExitWithError()) }) }) |