diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2020-11-22 23:55:25 +0100 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2020-11-23 10:49:26 +0100 |
commit | c901a766fb66564df24538f761f895212168c923 (patch) | |
tree | b898475066f76dd324d74e641038b95ca123e5ea /test/e2e | |
parent | 5292d5a7b85f9d2ae0b2a3734f8ae4baeba80f11 (diff) | |
download | podman-c901a766fb66564df24538f761f895212168c923.tar.gz podman-c901a766fb66564df24538f761f895212168c923.tar.bz2 podman-c901a766fb66564df24538f761f895212168c923.zip |
Add podman container ps command
This command exists in docker and is also in our documentation.
Also remove mentions of `podman ls` or `podman list`. These
commands do not exists in podman or docker.
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/ps_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/e2e/ps_test.go b/test/e2e/ps_test.go index fd08d4308..05571157c 100644 --- a/test/e2e/ps_test.go +++ b/test/e2e/ps_test.go @@ -44,6 +44,12 @@ var _ = Describe("Podman ps", func() { Expect(session.ExitCode()).To(Equal(0)) }) + It("podman container ps no containers", func() { + session := podmanTest.Podman([]string{"container", "ps"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + }) + It("podman ps default", func() { session := podmanTest.RunTopContainer("") session.WaitWithDefaultTimeout() |