reorganization of tests (1 route per file), add some basic tests

This commit is contained in:
Sébastien Thuret 2022-04-03 11:07:37 +02:00
parent 00a6039289
commit 0874dc062e
No known key found for this signature in database
GPG key ID: 230B93BBA62CB043
6 changed files with 64 additions and 15 deletions

View file

@ -0,0 +1,16 @@
import json
def test_api_get_languages(client):
response = client.get("/languages")
response_json = json.loads(response.data)
assert "code" in response_json[0] and "name" in response_json[0]
assert len(response_json) >= 1
assert response.status_code == 200
def test_api_get_languages_must_fail_bad_request_type(client):
response = client.post("/spec")
assert response.status_code == 405