Current section

Files

Jump to
horn templates horn_test test_swagger.py
Raw

templates/horn_test/test_swagger.py

from flask import url_for
class TestSwagger(object):
def test_swagger(self, testapp):
resp = testapp.get(url_for('flask-apispec.swagger-ui'))
assert resp.status_code == 200
assert 'swagger' in resp.body.decode()