summaryrefslogtreecommitdiff
path: root/test/e2e/rm_test.go
diff options
context:
space:
mode:
authorYiqiao Pu <ypu@redhat.com>2018-03-16 14:17:43 +0800
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-16 13:35:10 +0000
commiteb33cc2193b0dfdae359b3fd7cd18ef0f4284f75 (patch)
tree12f321677a2a21f2b32f0c794f683244c3fd797b /test/e2e/rm_test.go
parentd560ddd102ed34874f3097654948dc79e6160b47 (diff)
downloadpodman-eb33cc2193b0dfdae359b3fd7cd18ef0f4284f75.tar.gz
podman-eb33cc2193b0dfdae359b3fd7cd18ef0f4284f75.tar.bz2
podman-eb33cc2193b0dfdae359b3fd7cd18ef0f4284f75.zip
Add a test case for remove the latest container
Signed-off-by: Yiqiao Pu <ypu@redhat.com> Closes: #508 Approved by: baude
Diffstat (limited to 'test/e2e/rm_test.go')
-rw-r--r--test/e2e/rm_test.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/e2e/rm_test.go b/test/e2e/rm_test.go
index f3bce7bd1..1404312d9 100644
--- a/test/e2e/rm_test.go
+++ b/test/e2e/rm_test.go
@@ -105,4 +105,21 @@ var _ = Describe("Podman rm", func() {
result.WaitWithDefaultTimeout()
Expect(result.ExitCode()).To(Equal(0))
})
+
+ It("podman rm the latest container", func() {
+ session := podmanTest.Podman([]string{"create", ALPINE, "ls"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+
+ _, ec, cid := podmanTest.RunLsContainer("")
+ Expect(ec).To(Equal(0))
+
+ result := podmanTest.Podman([]string{"rm", "-l"})
+ result.WaitWithDefaultTimeout()
+ Expect(result.ExitCode()).To(Equal(0))
+ output := result.OutputToString()
+ Expect(output).To(ContainSubstring(cid))
+ Expect(podmanTest.NumberOfContainers()).To(Equal(1))
+
+ })
})