modeltest / test_app.py
yaseengoldfinchpc's picture
Git Push
43c5517
raw
history blame
252 Bytes
from fastapi.testclient import TestClient
from app import app
import pytest
client = TestClient(app)
def test_health_check():
response = client.get("/health")
assert response.status_code == 200
assert "status" in response.json()