diff options
author | Raul Sevilla <rsevilla@redhat.com> | 2021-07-12 09:50:50 +0200 |
---|---|---|
committer | Raul Sevilla <rsevilla@redhat.com> | 2021-07-12 10:28:35 +0200 |
commit | 00db5c6eafe92f1eb1a06280d951907764ac817d (patch) | |
tree | 1304b8adb0ccd9b621e4f664af120a62e8cc2024 /test | |
parent | bef1f03d3ca8bfd90f4cbb295d99bf97df74a815 (diff) | |
download | podman-00db5c6eafe92f1eb1a06280d951907764ac817d.tar.gz podman-00db5c6eafe92f1eb1a06280d951907764ac817d.tar.bz2 podman-00db5c6eafe92f1eb1a06280d951907764ac817d.zip |
Manifest create subcommand should accept more than 2 arguments
Signed-off-by: Raul Sevilla <rsevilla@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/manifest_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go index b2dc4f734..8c1ea4134 100644 --- a/test/e2e/manifest_test.go +++ b/test/e2e/manifest_test.go @@ -50,6 +50,12 @@ var _ = Describe("Podman manifest", func() { Expect(session.ExitCode()).To(Equal(0)) }) + It("podman manifest create", func() { + session := podmanTest.Podman([]string{"manifest", "create", "foo", imageList}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + }) + It("podman manifest inspect", func() { session := podmanTest.Podman([]string{"manifest", "inspect", BB}) session.WaitWithDefaultTimeout() |