(client: TestClient)
| 178 | |
| 179 | |
| 180 | def test_async_route(client: TestClient) -> None: |
| 181 | response = client.get("/async") |
| 182 | assert response.status_code == 200 |
| 183 | assert response.text == "Hello, world!" |
| 184 | |
| 185 | |
| 186 | def test_class_route(client: TestClient) -> None: |