From c03ff140d87a3bc210c8a6568c8091d8bde7aa50 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Mon, 29 Mar 2021 15:30:25 -0600 Subject: APIv2 basic test: relax APIVersion check It is tedious and error-prone to update the 'APIVersion=' test every time there's a minor bump. Change the test so it confirms only the major version. Signed-off-by: Ed Santiago --- test/apiv2/01-basic.at | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test') diff --git a/test/apiv2/01-basic.at b/test/apiv2/01-basic.at index a256d8327..64aafa013 100644 --- a/test/apiv2/01-basic.at +++ b/test/apiv2/01-basic.at @@ -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 -- cgit v1.2.3-54-g00ecf