12 lines
180 B
Python
12 lines
180 B
Python
from app import app
|
|
|
|
def test_basic():
|
|
assert True
|
|
|
|
def test_homepage():
|
|
client = app.test_client()
|
|
|
|
response = client.get("/")
|
|
|
|
assert response.status_code == 200
|