()
| 510 | |
| 511 | |
| 512 | def test_subdomain_reverse_urls() -> None: |
| 513 | assert ( |
| 514 | subdomain_router.url_path_for("subdomains", subdomain="foo", path="/homepage").make_absolute_url( |
| 515 | "https://whatever" |
| 516 | ) |
| 517 | == "https://foo.example.org/homepage" |
| 518 | ) |
| 519 | |
| 520 | |
| 521 | async def echo_urls(request: Request) -> JSONResponse: |
nothing calls this directly
no test coverage detected