aboutsummaryrefslogtreecommitdiff
path: root/test/apiv2
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-18 11:48:06 -0400
committerGitHub <noreply@github.com>2022-05-18 11:48:06 -0400
commit7093885df73989acd2aa2dd936695d0b30a3dcf8 (patch)
treedc2b3cf6c66ad92152df4121f9661755a03a4d19 /test/apiv2
parent12964c7b93457a05441db081270a51083a1398f4 (diff)
parentee782fcb70c3d0d8f656406d346a3972f3200c83 (diff)
downloadpodman-7093885df73989acd2aa2dd936695d0b30a3dcf8.tar.gz
podman-7093885df73989acd2aa2dd936695d0b30a3dcf8.tar.bz2
podman-7093885df73989acd2aa2dd936695d0b30a3dcf8.zip
Merge pull request #14228 from rhatdan/api
Deleting an n use image should return conflict not system error
Diffstat (limited to 'test/apiv2')
-rw-r--r--test/apiv2/10-images.at11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/apiv2/10-images.at b/test/apiv2/10-images.at
index a994f8e11..fd04e3f1b 100644
--- a/test/apiv2/10-images.at
+++ b/test/apiv2/10-images.at
@@ -156,6 +156,17 @@ t GET images/json?filters='{"reference":["test1"]}' 200 length=1
t DELETE libpod/images/test1:latest 200
+# to be used in prune until filter tests
+podman image build -t docker.io/library/test1:latest -<<EOF
+from alpine
+RUN >file4
+EOF
+podman create --name test1 test1 echo hi
+
+t DELETE images/test1:latest 409
+podman rm test1
+t DELETE images/test1:latest 200
+
t GET "images/get?names=alpine" 200 '[POSIX tar archive]'
podman pull busybox