10 lines
234 B
Python
10 lines
234 B
Python
from app.main import app
|
|
|
|
|
|
def test_generated_api_documentation_is_disabled():
|
|
paths = {route.path for route in app.routes}
|
|
|
|
assert "/docs" not in paths
|
|
assert "/redoc" not in paths
|
|
assert "/openapi.json" not in paths
|