summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-31 03:24:35 -0400
committerGitHub <noreply@github.com>2020-07-31 03:24:35 -0400
commit0e009d5f80a8aa3192035a8704b3fc3edcb729c6 (patch)
tree1a8eef2e62b98b8dd32a0ca0e843d02e1e4642fe /test/e2e
parent1b784b4c3509e94b9e5b2f6bb432042978bd2fb6 (diff)
parent8e6a6197db6496b9ef98399be49dfda8fb14811a (diff)
downloadpodman-0e009d5f80a8aa3192035a8704b3fc3edcb729c6.tar.gz
podman-0e009d5f80a8aa3192035a8704b3fc3edcb729c6.tar.bz2
podman-0e009d5f80a8aa3192035a8704b3fc3edcb729c6.zip
Merge pull request #7159 from ashley-cui/runningfor
add {{.RunningFor}} placeholder in ps --format
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/ps_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/e2e/ps_test.go b/test/e2e/ps_test.go
index 281968fcd..f10ef5c99 100644
--- a/test/e2e/ps_test.go
+++ b/test/e2e/ps_test.go
@@ -476,5 +476,13 @@ var _ = Describe("Podman ps", func() {
session.WaitWithDefaultTimeout()
Expect(session.OutputToString()).To(ContainSubstring("echo very long cr..."))
})
+ It("podman ps --format {{RunningFor}}", func() {
+ _, ec, _ := podmanTest.RunLsContainer("")
+ Expect(ec).To(Equal(0))
+ result := podmanTest.Podman([]string{"ps", "-a", "--format", "{{.RunningFor}}"})
+ result.WaitWithDefaultTimeout()
+ Expect(result.ExitCode()).To(Equal(0))
+ Expect(result.OutputToString()).To(ContainSubstring("ago"))
+ })
})