mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2025-06-22 17:10:59 +00:00
reorganization of tests (1 route per file), add some basic tests
This commit is contained in:
parent
00a6039289
commit
0874dc062e
6 changed files with 64 additions and 15 deletions
10
tests/test_api/test_api_spec.py
Normal file
10
tests/test_api/test_api_spec.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
def test_api_get_spec(client):
|
||||
response = client.get("/spec")
|
||||
|
||||
assert response.status_code == 200
|
||||
|
||||
|
||||
def test_api_get_spec_must_fail_bad_request_type(client):
|
||||
response = client.post("/spec")
|
||||
|
||||
assert response.status_code == 405
|
Loading…
Add table
Add a link
Reference in a new issue