aboutsummaryrefslogtreecommitdiff
path: root/app/tests/test_fastapi.py
blob: c6b40ccb4762cbf67c713dd4aee261d03d2226dc (plain)
1
2
3
4
5
6
7
8
9
10
from starlette.testclient import TestClient

from api import app as fastapi_app

fastapi_client = TestClient(fastapi_app)

def test_fastapi(app, client):
	res = fastapi_client.get("/version")
	assert res.status_code == 200
	assert res.json() == {"message":fastapi_app.version}