summaryrefslogtreecommitdiff
path: root/test/e2e/events_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/e2e/events_test.go')
-rw-r--r--test/e2e/events_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/e2e/events_test.go b/test/e2e/events_test.go
index 46ea10c56..ee0b8761a 100644
--- a/test/e2e/events_test.go
+++ b/test/e2e/events_test.go
@@ -199,4 +199,17 @@ var _ = Describe("Podman events", func() {
wg.Wait()
})
+
+ It("podman events pod creation", func() {
+ create := podmanTest.Podman([]string{"pod", "create", "--infra=false", "--name", "foobarpod"})
+ create.WaitWithDefaultTimeout()
+ Expect(create).Should(Exit(0))
+ id := create.OutputToString()
+ result := podmanTest.Podman([]string{"events", "--stream=false", "--filter", "pod=" + id})
+ result.WaitWithDefaultTimeout()
+ Expect(result).Should(Exit(0))
+ Expect(result.OutputToStringArray()).To(HaveLen(1))
+ Expect(result.OutputToString()).To(ContainSubstring("create"))
+ })
+
})