summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-12-19 19:36:52 +0100
committerGitHub <noreply@github.com>2019-12-19 19:36:52 +0100
commitdde48b44e725a3da959c627519e8110ec992a26e (patch)
treeb3c6ba6c51221548eee9584df5be10b6418445c9 /test
parent6b956dfd1f1071ceb40b403a9604da387979105a (diff)
parent437bc61f4e64d132736066330b18f327bffe48fa (diff)
downloadpodman-dde48b44e725a3da959c627519e8110ec992a26e.tar.gz
podman-dde48b44e725a3da959c627519e8110ec992a26e.tar.bz2
podman-dde48b44e725a3da959c627519e8110ec992a26e.zip
Merge pull request #4684 from vrothberg/systemd-improvements
container config: add CreateCommand
Diffstat (limited to 'test')
-rw-r--r--test/e2e/inspect_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/e2e/inspect_test.go b/test/e2e/inspect_test.go
index 7d029c52f..2d81ef0d8 100644
--- a/test/e2e/inspect_test.go
+++ b/test/e2e/inspect_test.go
@@ -117,6 +117,18 @@ var _ = Describe("Podman inspect", func() {
Expect(len(result.OutputToStringArray())).To(Equal(1))
})
+ It("podman inspect container and filter for CreateCommand", func() {
+ SkipIfRemote()
+ ls, ec, _ := podmanTest.RunLsContainer("")
+ Expect(ec).To(Equal(0))
+ cid := ls.OutputToString()
+
+ result := podmanTest.Podman([]string{"inspect", "--format={{.Config.CreateCommand}}", cid})
+ result.WaitWithDefaultTimeout()
+ Expect(result.ExitCode()).To(Equal(0))
+ Expect(len(result.OutputToStringArray())).To(Equal(1))
+ })
+
It("podman inspect -l with additional input should fail", func() {
SkipIfRemote()
result := podmanTest.Podman([]string{"inspect", "-l", "1234foobar"})