| from fastapi.testclient import TestClient | |
| from app.main import app | |
| def test_lifespan(): | |
| client = TestClient(app) | |
| response = client.get("/health") | |
| assert response.status_code == 200 | |
| from fastapi.testclient import TestClient | |
| from app.main import app | |
| def test_lifespan(): | |
| client = TestClient(app) | |
| response = client.get("/health") | |
| assert response.status_code == 200 | |