(client: TestClient)
| 196 | |
| 197 | |
| 198 | def test_mounted_route_path_params(client: TestClient) -> None: |
| 199 | response = client.get("/users/tomchristie") |
| 200 | assert response.status_code == 200 |
| 201 | assert response.text == "Hello, tomchristie!" |
| 202 | |
| 203 | |
| 204 | def test_subdomain_route(test_client_factory: TestClientFactory) -> None: |