initial commit
This commit is contained in:
9
server/tests/test_app.py
Normal file
9
server/tests/test_app.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from app import app
|
||||
|
||||
client = TestClient(app=app)
|
||||
|
||||
|
||||
def test_app():
|
||||
assert isinstance(client, TestClient)
|
||||
Reference in New Issue
Block a user