backend / tests /test_main.py
praneethys's picture
postgres database integration (#3)
d5684b3 verified
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