hello-api/tests/test_app.py

12 lines
229 B
Python
Raw Normal View History

2026-09-16 16:26:15 +00:00
from app.main import app
def test_health():
c = app.test_client()
assert c.get("/health").status_code == 200
def test_version():
c = app.test_client()
assert c.get("/version").get_json()["app"] == "hello-api"