aboutsummaryrefslogtreecommitdiff
path: root/test/e2e/pull_test.go
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-15 15:12:58 +0000
committerGitHub <noreply@github.com>2022-07-15 15:12:58 +0000
commit98b22e29c9a769020de1ae8d2bf9a7630e930e78 (patch)
tree1c4f7536934e0354c24ebee1a91acaad832855b7 /test/e2e/pull_test.go
parentb4c09bef668dd41e1cc55b8d379992e2d22714b7 (diff)
parent90607a6d04ad96d1821e8f50157d6e8aa600cdf5 (diff)
downloadpodman-98b22e29c9a769020de1ae8d2bf9a7630e930e78.tar.gz
podman-98b22e29c9a769020de1ae8d2bf9a7630e930e78.tar.bz2
podman-98b22e29c9a769020de1ae8d2bf9a7630e930e78.zip
Merge pull request #14932 from jakecorrenti/pull-all-tags-shorthand
Podman pull --all-tags shorthand option
Diffstat (limited to 'test/e2e/pull_test.go')
-rw-r--r--test/e2e/pull_test.go9
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() {