summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-31 00:19:52 +0100
committerGitHub <noreply@github.com>2020-10-31 00:19:52 +0100
commitb6ab2df9d11a736c7781f200ff39c886f41e172d (patch)
tree8941bda112a1591031eebc3999b8cc4630b8ba92 /test
parente5227b9d75d2a5145050a9a6b66fd6b812a370e9 (diff)
parent57650aa5f32479944c735994286cc74e6c36452b (diff)
downloadpodman-b6ab2df9d11a736c7781f200ff39c886f41e172d.tar.gz
podman-b6ab2df9d11a736c7781f200ff39c886f41e172d.tar.bz2
podman-b6ab2df9d11a736c7781f200ff39c886f41e172d.zip
Merge pull request #8100 from QiWang19/mirror-manifest
manifest list inspect single image
Diffstat (limited to 'test')
-rw-r--r--test/e2e/manifest_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go
index f984345f4..29a62e5bb 100644
--- a/test/e2e/manifest_test.go
+++ b/test/e2e/manifest_test.go
@@ -58,6 +58,11 @@ var _ = Describe("Podman manifest", func() {
session = podmanTest.PodmanNoCache([]string{"manifest", "inspect", "quay.io/libpod/busybox"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
+
+ // inspect manifest of single image
+ session = podmanTest.PodmanNoCache([]string{"manifest", "inspect", "quay.io/libpod/busybox@sha256:6655df04a3df853b029a5fac8836035ac4fab117800c9a6c4b69341bb5306c3d"})
+ session.WaitWithDefaultTimeout()
+ Expect(session).Should(Exit(0))
})
It("podman manifest add", func() {