(client: TestClient)
| 190 | |
| 191 | |
| 192 | def test_mounted_route(client: TestClient) -> None: |
| 193 | response = client.get("/users/") |
| 194 | assert response.status_code == 200 |
| 195 | assert response.text == "Hello, everyone!" |
| 196 | |
| 197 | |
| 198 | def test_mounted_route_path_params(client: TestClient) -> None: |