Fix lint errors

This commit is contained in:
2022-07-10 20:18:14 +01:00
parent 97e6c49201
commit c7ead8d4fd
8 changed files with 23 additions and 3 deletions

View File

@ -1,10 +1,12 @@
#!/usr/bin/env python3
import pytest
"""Tests for app/app.py"""
from tests import client
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