mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 08:09:37 +00:00
11 lines
223 B
Python
11 lines
223 B
Python
from swagger_spec_validator import validator20
|
|
|
|
|
|
def test_swagger(utils):
|
|
response = utils.get_ok("/swagger/")
|
|
validator20.validate_spec(response.json)
|
|
|
|
|
|
def test_swagger_ui(utils):
|
|
utils.get_ok("/swagger-ui/")
|