diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-20 22:08:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 22:08:25 +0200 |
commit | 84180d99bc808795a1f91747436a42745ddececb (patch) | |
tree | 52070eed2d7619f1a33c40ff826c681fb6dc6e7f /test/e2e/mount_test.go | |
parent | 386de7a1fbfef0c266e04f6471f9382a5d39a02f (diff) | |
parent | 4e31c8136dffd2272e49715b83fba092621ffd2a (diff) | |
download | podman-84180d99bc808795a1f91747436a42745ddececb.tar.gz podman-84180d99bc808795a1f91747436a42745ddececb.tar.bz2 podman-84180d99bc808795a1f91747436a42745ddececb.zip |
Merge pull request #7353 from rhatdan/v2.0
Cleanup handling of podman mount/unmount
Diffstat (limited to 'test/e2e/mount_test.go')
-rw-r--r-- | test/e2e/mount_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/mount_test.go b/test/e2e/mount_test.go index 657daedef..d98999162 100644 --- a/test/e2e/mount_test.go +++ b/test/e2e/mount_test.go @@ -80,6 +80,11 @@ var _ = Describe("Podman mount", func() { Expect(j.ExitCode()).To(Equal(0)) Expect(j.IsJSONOutputValid()).To(BeTrue()) + j = podmanTest.Podman([]string{"mount", "--format='{{.foobar}}'"}) + j.WaitWithDefaultTimeout() + Expect(j.ExitCode()).ToNot(Equal(0)) + Expect(j.ErrorToString()).To(ContainSubstring("unknown --format")) + umount := podmanTest.Podman([]string{"umount", cid}) umount.WaitWithDefaultTimeout() Expect(umount.ExitCode()).To(Equal(0)) |