mirror of
https://github.com/LukeHagar/connexion.git
synced 2025-12-09 20:37:46 +00:00
Fixes #1829. Changes proposed in this pull request: - Use _raw_spec when cloning --------- Co-authored-by: Robbe Sneyders <robbe.sneyders@gmail.com>
5 lines
167 B
Python
5 lines
167 B
Python
def test_simple(swagger_ui_app):
|
|
app_client = swagger_ui_app.test_client()
|
|
response = app_client.get("/v1.0/spec.json")
|
|
assert response.status_code == 200
|