mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 21:59:40 +02:00
7 lines
184 B
Python
7 lines
184 B
Python
|
from fastapi.testclient import TestClient
|
||
|
|
||
|
|
||
|
def test_openapi_returns_json(api_client: TestClient):
|
||
|
response = api_client.get("openapi.json")
|
||
|
assert response.status_code == 200
|