Initial
This commit is contained in:
10
tests/test_app.py
Normal file
10
tests/test_app.py
Normal file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import pytest
|
||||
|
||||
from tests import client
|
||||
|
||||
|
||||
def test_index(client) -> None:
|
||||
req = client.get('/')
|
||||
assert req.status_code == 200 and "ePage" in req.text
|
Reference in New Issue
Block a user