Files
devopsexam/tests/test_app.py
2026-05-08 19:05:56 +02:00

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