diff --git a/tests/test_papi.py b/tests/test_papi.py index 8f767b7..22a79eb 100644 --- a/tests/test_papi.py +++ b/tests/test_papi.py @@ -1,18 +1,10 @@ from fastapi import FastAPI from fastapi.testclient import TestClient -from papi import __version__ - -app = FastAPI() - - -@app.get("/") -async def read_main(): - return {"msg": "Hello World"} - - from papi.main import app +from papi import __version__ + client = TestClient(app)