backend / tests /test_main.py
Praneeth Yerrapragada
feat: postgres database schema
878d807
Raw
History Blame
183 Bytes
from main import app
from fastapi.testclient import TestClient
client = TestClient(app)
def test_read_main():
response = client.get("/")
assert response.status_code == 200