diff --git a/tests/test_application.py b/tests/test_application.py index 311ceaa85..690258ba0 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -12,6 +12,7 @@ client = TestClient(app) [ ("/api_route", 200, {"message": "Hello World"}), ("/non_decorated_route", 200, {"message": "Hello World"}), + ("/multiple-methods", 200, {"message": "Hello World"}), ("/nonexistent", 404, {"detail": "Not Found"}), ], )