()
| 60 | @pytest.mark.asyncio |
| 61 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |
| 62 | async def test_send_text(): |
| 63 | url = "https://httpbin.org/post" |
| 64 | response = await client.post(url, body="hello") |
| 65 | json = await response.json() |
| 66 | assert json["data"] == "hello" |
| 67 | |
| 68 | |
| 69 | @pytest.mark.asyncio |