1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-22 22:59:41 +02:00
mealie/tests/unit_tests/test_open_api.py

9 lines
177 B
Python
Raw Normal View History

from openapi_spec_validator import validate_v3_spec
from mealie.app import app
def test_validate_open_api_spec():
open_api = app.openapi()
validate_v3_spec(open_api)