summaryrefslogtreecommitdiff
path: root/test/e2e/prune_test.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-03-02 07:14:28 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2019-03-03 06:14:20 -0500
commitd231cfba92ef440404f936a2cb0a64503b9c8c46 (patch)
tree716b5088d5f97ee85dc0adf19e43622044a41b5d /test/e2e/prune_test.go
parent4c618875f6402f36e4c820766050667e6a417d7c (diff)
downloadpodman-d231cfba92ef440404f936a2cb0a64503b9c8c46.tar.gz
podman-d231cfba92ef440404f936a2cb0a64503b9c8c46.tar.bz2
podman-d231cfba92ef440404f936a2cb0a64503b9c8c46.zip
Fix aliased commands to actually work
The current aliased commands podman container list and podman image list podman image rm Do not work properly. The global storage options are broken. This patch fixes this issue. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/prune_test.go')
-rw-r--r--test/e2e/prune_test.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/e2e/prune_test.go b/test/e2e/prune_test.go
index a9d2ea079..74cdc126f 100644
--- a/test/e2e/prune_test.go
+++ b/test/e2e/prune_test.go
@@ -88,17 +88,6 @@ var _ = Describe("Podman rm", func() {
Expect(len(images.OutputToStringArray())).To(Equal(0))
})
- It("podman container image prune unused images", func() {
- prune := podmanTest.Podman([]string{"container", "image", "prune", "-a"})
- prune.WaitWithDefaultTimeout()
- Expect(prune.ExitCode()).To(Equal(0))
-
- images := podmanTest.Podman([]string{"image", "list", "-a"})
- images.WaitWithDefaultTimeout()
- // all images are unused, so they all should be deleted!
- Expect(len(images.OutputToStringArray())).To(Equal(0))
- })
-
It("podman system image prune unused images", func() {
SkipIfRemote()
podmanTest.BuildImage(pruneImage, "alpine_bash:latest", "true")