We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52ed045 commit 402a2d3Copy full SHA for 402a2d3
tests/test_configure_app.py
@@ -1,3 +1,5 @@
1
+"""Tests for configuring an external FastAPI application."""
2
+
3
from fastapi import FastAPI
4
from fastapi.routing import APIRoute
5
@@ -6,6 +8,7 @@
6
8
7
9
10
def test_configure_app_excludes_proxy_route():
11
+ """Ensure `configure_app` adds health route and omits proxy route."""
12
app = FastAPI()
13
settings = Settings(
14
upstream_url="https://example.com",
0 commit comments