FitTrackee/fittrackee/tests/application/test_health_check_api.py

13 lines
417 B
Python
Raw Normal View History

2020-05-10 15:55:56 +02:00
import json
class TestHealthCheck:
def test_it_returns_pong_on_health_check(self, app):
""" => Ensure the /health_check route behaves correctly."""
client = app.test_client()
response = client.get('/api/ping')
data = json.loads(response.data.decode())
assert response.status_code == 200
assert 'pong' in data['message']
assert 'success' in data['status']