Browse Source

📝 Fix async test example not to trigger DeprecationWarning (#12084)

pull/12093/head
Marcin Sulikowski 7 months ago
committed by GitHub
parent
commit
6e98249c21
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/de/docs/advanced/async-tests.md
  2. 2
      docs/em/docs/advanced/async-tests.md
  3. 2
      docs/en/docs/advanced/async-tests.md
  4. 2
      docs/pt/docs/advanced/async-tests.md
  5. 6
      docs_src/async_tests/test_main.py

2
docs/de/docs/advanced/async-tests.md

@ -72,7 +72,7 @@ Beachten Sie, dass die Testfunktion jetzt `async def` ist und nicht nur `def` wi
Dann können wir einen `AsyncClient` mit der App erstellen und mit `await` asynchrone Requests an ihn senden.
```Python hl_lines="9-10"
```Python hl_lines="9-12"
{!../../../docs_src/async_tests/test_main.py!}
```

2
docs/em/docs/advanced/async-tests.md

@ -72,7 +72,7 @@ $ pytest
⤴️ 👥 💪 ✍ `AsyncClient` ⏮️ 📱, & 📨 🔁 📨 ⚫️, ⚙️ `await`.
```Python hl_lines="9-10"
```Python hl_lines="9-12"
{!../../../docs_src/async_tests/test_main.py!}
```

2
docs/en/docs/advanced/async-tests.md

@ -72,7 +72,7 @@ Note that the test function is now `async def` instead of just `def` as before w
Then we can create an `AsyncClient` with the app, and send async requests to it, using `await`.
```Python hl_lines="9-10"
```Python hl_lines="9-12"
{!../../../docs_src/async_tests/test_main.py!}
```

2
docs/pt/docs/advanced/async-tests.md

@ -72,7 +72,7 @@ Note que a função de teste é `async def` agora, no lugar de apenas `def` como
Então podemos criar um `AsyncClient` com a aplicação, e enviar requisições assíncronas para ela utilizando `await`.
```Python hl_lines="9-10"
```Python hl_lines="9-12"
{!../../../docs_src/async_tests/test_main.py!}
```

6
docs_src/async_tests/test_main.py

@ -1,12 +1,14 @@
import pytest
from httpx import AsyncClient
from httpx import ASGITransport, AsyncClient
from .main import app
@pytest.mark.anyio
async def test_root():
async with AsyncClient(app=app, base_url="http://test") as ac:
async with AsyncClient(
transport=ASGITransport(app=app), base_url="http://test"
) as ac:
response = await ac.get("/")
assert response.status_code == 200
assert response.json() == {"message": "Tomato"}

Loading…
Cancel
Save