Files
epage/tests/test_app.py
Luke Tainton 8e8cb5c33e
All checks were successful
Snyk / security (push) Successful in 50s
Formatting
2025-06-22 22:25:48 +01:00

13 lines
274 B
Python

#!/usr/bin/env python3
"""Tests for app/app.py"""
from tests import client # pragma: no cover
def test_index(client) -> None:
"""Ensure that the index page is loaded correctly."""
req = client.get("/")
assert req.status_code == 200 and "ePage" in req.text