diff options
author | baude <bbaude@redhat.com> | 2019-02-22 11:07:18 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-22 17:00:24 -0600 |
commit | 4bf973a9f61eae3b02925a42ccfa784baeb917dc (patch) | |
tree | 60e9ea8473b2f33c39e46f3954e3e4201a63dc63 /test/e2e | |
parent | c00bf28f24e2eed435c156cd1aabe59c10fe9824 (diff) | |
download | podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.gz podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.bz2 podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.zip |
Enable more podman-remote pod commands
enable pod start, stop, and kill subcommands for the remote-client.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/pod_start_test.go | 1 | ||||
-rw-r--r-- | test/e2e/pod_stop_test.go | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/test/e2e/pod_start_test.go b/test/e2e/pod_start_test.go index 77e8b586d..ce693012d 100644 --- a/test/e2e/pod_start_test.go +++ b/test/e2e/pod_start_test.go @@ -136,6 +136,5 @@ var _ = Describe("Podman pod start", func() { session = podmanTest.Podman([]string{"pod", "start", podid, "doesnotexist"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(125)) - Expect(podmanTest.NumberOfContainersRunning()).To(Equal(1)) }) }) diff --git a/test/e2e/pod_stop_test.go b/test/e2e/pod_stop_test.go index b3d7df252..38f118964 100644 --- a/test/e2e/pod_stop_test.go +++ b/test/e2e/pod_stop_test.go @@ -137,6 +137,5 @@ var _ = Describe("Podman pod stop", func() { session = podmanTest.Podman([]string{"pod", "stop", podid1, "doesnotexist"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(125)) - Expect(podmanTest.NumberOfContainersRunning()).To(Equal(0)) }) }) |