(client: TestClient)
| 184 | |
| 185 | |
| 186 | def test_class_route(client: TestClient) -> None: |
| 187 | response = client.get("/class") |
| 188 | assert response.status_code == 200 |
| 189 | assert response.text == "Hello, world!" |
| 190 | |
| 191 | |
| 192 | def test_mounted_route(client: TestClient) -> None: |