mirror of https://github.com/containers/podman.git
Merge pull request #9876 from edsantiago/apiv2_relax_versioncheck
APIv2 basic test: relax APIVersion check
This commit is contained in:
commit
5eb59509be
|
@ -16,13 +16,13 @@ t GET libpod/_ping 200 OK
|
|||
t HEAD libpod/_ping 200
|
||||
|
||||
for i in /version version; do
|
||||
t GET $i 200 \
|
||||
.Components[0].Name="Podman Engine" \
|
||||
.Components[0].Details.APIVersion=3.2.0-dev \
|
||||
.Components[0].Details.MinAPIVersion=3.1.0 \
|
||||
.Components[0].Details.Os=linux \
|
||||
.ApiVersion=1.40 \
|
||||
.MinAPIVersion=1.24 \
|
||||
t GET $i 200 \
|
||||
.Components[0].Name="Podman Engine" \
|
||||
.Components[0].Details.APIVersion~3[0-9.-]\\+ \
|
||||
.Components[0].Details.MinAPIVersion=3.1.0 \
|
||||
.Components[0].Details.Os=linux \
|
||||
.ApiVersion=1.40 \
|
||||
.MinAPIVersion=1.24 \
|
||||
.Os=linux
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue