update test coverage

This commit is contained in:
Emanuel Ilyayev 2023-11-21 22:35:52 -05:00
parent 4359b9355f
commit 3e6a63e4c9
1 changed files with 1 additions and 0 deletions

View File

@ -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"}),
],
)