Files
TheGrapefruitsDuo/server/tests/test_app.py
Lucas Jensen 5d67c0c2b2 initial commit
2024-05-01 09:19:01 -07:00

10 lines
153 B
Python

from fastapi.testclient import TestClient
from app import app
client = TestClient(app=app)
def test_app():
assert isinstance(client, TestClient)