forked from flasgger/flasgger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuse_openapi.py
More file actions
34 lines (28 loc) · 757 Bytes
/
use_openapi.py
File metadata and controls
34 lines (28 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
In this example `openapi` version is used instead of `swagger` version.
"""
from flask import Flask
from flasgger import Swagger
app = Flask(__name__)
swag = Swagger(app, config={
'headers': [],
'specs': [
{
'endpoint': 'apispec',
'route': '/apispec.json'
}
],
'openapi': '3.0.1'
})
def test_swag(client, specs_data):
"""
This test is runs automatically in Travis CI
:param client: Flask app test client
:param specs_data: {'url': {swag_specs}} for every spec in app
"""
for spec in specs_data.values():
assert 'openapi' in spec
assert '3.0.1' == spec['openapi']
assert 'swagger' not in spec
if __name__ == '__main__':
app.run(debug=True)