14 lines
306 B
Python
14 lines
306 B
Python
from app.test.fixtures import app, client # noqa
|
|
|
|
|
|
def test_app_creates(app): # noqa
|
|
assert app
|
|
|
|
|
|
def test_app_healthy(app, client): # noqa
|
|
with client:
|
|
resp = client.get('/health')
|
|
assert resp.status_code == 200
|
|
assert resp.is_json
|
|
assert resp.json == 'healthy'
|