microblog.pub/tests/integration_test.py
2018-05-20 22:55:52 +02:00

8 lines
200 B
Python

import requests
def test_ping_homepage():
"""Ensure the homepage is accessible."""
resp = requests.get('http://localhost:5005')
resp.raise_for_status()
assert resp.status_code == 200