vpython·Pythonbyvi21 How do you test request validation in FastAPI?The default approach involves using TestClient. However, I found that mocking the database, background tasks, etc., is overkill. Do you have any suggestions?View original on lemmy.ml6Comments2
bbradbeattie lemmy.ca1Hide 1 replyIf you don't want to test the round trip, have your fastapi routes call some other function and test just that function.1
If you don't want to test the round trip, have your fastapi routes call some other function and test just that function.
Do you mean moving Pydantic models as arguments of other function?