diff options
author | Jake Correnti <jcorrenti13@gmail.com> | 2022-07-13 21:41:16 -0400 |
---|---|---|
committer | Jake Correnti <jcorrenti13@gmail.com> | 2022-07-14 10:54:24 -0400 |
commit | 90607a6d04ad96d1821e8f50157d6e8aa600cdf5 (patch) | |
tree | a3d667ec843547b0beff9afdb230328102a3167f /test | |
parent | 5c3eec55895c9ca4c36571e1e919f0cb8632bedb (diff) | |
download | podman-90607a6d04ad96d1821e8f50157d6e8aa600cdf5.tar.gz podman-90607a6d04ad96d1821e8f50157d6e8aa600cdf5.tar.bz2 podman-90607a6d04ad96d1821e8f50157d6e8aa600cdf5.zip |
Podman pull --all-tags shorthand option
I added the shorthand option for `podman pull --all-tags`. Like Docker,
Podman can now do `podman pull -a`.
Signed-off-by: Jake Correnti <jcorrenti13@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/pull_test.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/e2e/pull_test.go b/test/e2e/pull_test.go index 04b7a280d..12f14fdc8 100644 --- a/test/e2e/pull_test.go +++ b/test/e2e/pull_test.go @@ -108,6 +108,15 @@ var _ = Describe("Podman pull", func() { session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) Expect(len(session.OutputToStringArray())).To(BeNumerically(">=", 2), "Expected at least two images") + + session = podmanTest.Podman([]string{"pull", "-a", "quay.io/libpod/testdigest_v2s2"}) + session.WaitWithDefaultTimeout() + Expect(session).Should(Exit(0)) + + session = podmanTest.Podman([]string{"images"}) + session.WaitWithDefaultTimeout() + Expect(session).Should(Exit(0)) + Expect(len(session.OutputToStringArray())).To(BeNumerically(">=", 2), "Expected at least two images") }) It("podman pull from docker with nonexistent --authfile", func() { |