From 167befc8ed6fd8e327b4554f6716bbc1d7f3531b Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 5 Jun 2021 18:46:08 +0530 Subject: added FastAPI support --- app/tests/test_fastapi.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app/tests/test_fastapi.py (limited to 'app/tests/test_fastapi.py') diff --git a/app/tests/test_fastapi.py b/app/tests/test_fastapi.py new file mode 100644 index 0000000..c6b40cc --- /dev/null +++ b/app/tests/test_fastapi.py @@ -0,0 +1,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} \ No newline at end of file -- cgit v1.2.3