From 3e6a63e4c90fbbc0f8ed8242392a88c04bcb2b7c Mon Sep 17 00:00:00 2001 From: Emanuel Ilyayev Date: Tue, 21 Nov 2023 22:35:52 -0500 Subject: [PATCH] update test coverage --- tests/test_application.py | 1 + 1 file changed, 1 insertion(+) 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"}), ], )