diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-02 14:52:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 14:52:38 -0400 |
commit | d4e97b35c2fa9e27b78c14e9ce7f3272d7db7cbf (patch) | |
tree | d7be7239f186a6c9f3c5f026f5c306166ce5ae11 /test | |
parent | f1cdead33d8f9c29348f9a66ba4a6aa5ed0aa7b2 (diff) | |
parent | 6a291942c253fcb13fc2ee0990f2137ca3584270 (diff) | |
download | podman-d4e97b35c2fa9e27b78c14e9ce7f3272d7db7cbf.tar.gz podman-d4e97b35c2fa9e27b78c14e9ce7f3272d7db7cbf.tar.bz2 podman-d4e97b35c2fa9e27b78c14e9ce7f3272d7db7cbf.zip |
Merge pull request #7901 from vrothberg/fix-compat-images-create
compat: images/create: fix tag parsing
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/10-images.at | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/apiv2/10-images.at b/test/apiv2/10-images.at index a204df65c..bdc298ae3 100644 --- a/test/apiv2/10-images.at +++ b/test/apiv2/10-images.at @@ -39,7 +39,11 @@ t GET images/$iid/json 200 \ .Id=sha256:$iid \ .RepoTags[0]=$IMAGE -#t POST images/create fromImage=alpine 201 foo +t POST "images/create?fromImage=alpine" '' 200 + +t POST "images/create?fromImage=alpine&tag=latest" '' 200 + +t POST "images/create?fromImage=docker.io/library/alpine&tag=sha256:acd3ca9941a85e8ed16515bfc5328e4e2f8c128caa72959a58a127b7801ee01f" '' 200 # Display the image history t GET libpod/images/nonesuch/history 404 |