summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/manifest_test.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go
index 6e029d3a4..230864891 100644
--- a/test/e2e/manifest_test.go
+++ b/test/e2e/manifest_test.go
@@ -309,6 +309,13 @@ var _ = Describe("Podman manifest", func() {
Expect(err).To(BeNil())
})
+ It("push with error", func() {
+ session := podmanTest.Podman([]string{"manifest", "push", "badsrcvalue", "baddestvalue"})
+ session.WaitWithDefaultTimeout()
+ Expect(session).Should(ExitWithError())
+ Expect(session.ErrorToString()).NotTo(BeEmpty())
+ })
+
It("push --rm", func() {
SkipIfRemote("remote does not support --rm")
session := podmanTest.Podman([]string{"manifest", "create", "foo"})