mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-06 07:50:13 +01:00
11 lines
242 B
Python
11 lines
242 B
Python
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
|