forked from mirrors/LibreTranslate
10 lines
242 B
Python
10 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
|