Merge pull request #2911 from giuseppe/fix-pull-errors

pull: fix a couple of issues
This commit is contained in:
OpenShift Merge Robot
2019-04-12 12:40:51 -07:00
committed by GitHub
2 changed files with 13 additions and 2 deletions

View File

@@ -38,6 +38,12 @@ var _ = Describe("Podman pull", func() {
})
It("podman pull from docker a not existing image", func() {
session := podmanTest.Podman([]string{"pull", "ibetthisdoesntexistthere:foo"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Not(Equal(0)))
})
It("podman pull from docker with tag", func() {
session := podmanTest.Podman([]string{"pull", "busybox:glibc"})
session.WaitWithDefaultTimeout()