()
| 92 | @pytest.mark.asyncio |
| 93 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |
| 94 | async def test_get_text(): |
| 95 | url = "https://httpbin.org/html" |
| 96 | response = await client.get(url) |
| 97 | text = await response.text() |
| 98 | assert text is not None |
| 99 | |
| 100 | |
| 101 | @pytest.mark.asyncio |