Commit e0d3d72a authored by Alfredo Di Napoli's avatar Alfredo Di Napoli

More lax /version test

This commit makes the `GET /api/v1.0/version` test more lax, and less
prone to break on version bumps.
parent 03bd0bf6
......@@ -47,7 +47,9 @@ tests = sequential $ aroundAll withTestDBAndPort $ do
let version_api = client (Proxy :: Proxy (MkGargAPI (GargAPIVersion GargVersion)))
it "requires no auth and returns the current version" $ \((_testEnv, port), _) -> do
result <- runClientM version_api (clientEnv port)
result `shouldBe` (Right "0.0.6.9.9.8")
case result of
Left err -> fail (show err)
Right r -> r `shouldSatisfy` ((>= 1) . T.length) -- we got something back
describe "POST /api/v1.0/auth" $ do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment