Browse Source
📝 Update includes in `docs/de/docs/advanced/async-tests.md` (#12567)
pull/12627/head
Julio Anthony Leonard
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
6 deletions
-
docs/de/docs/advanced/async-tests.md
|
|
@ -60,9 +60,7 @@ $ pytest |
|
|
|
|
|
|
|
Der Marker `@pytest.mark.anyio` teilt pytest mit, dass diese Testfunktion asynchron aufgerufen werden soll: |
|
|
|
|
|
|
|
```Python hl_lines="7" |
|
|
|
{!../../docs_src/async_tests/test_main.py!} |
|
|
|
``` |
|
|
|
{* ../../docs_src/async_tests/test_main.py hl[7] *} |
|
|
|
|
|
|
|
/// tip | "Tipp" |
|
|
|
|
|
|
@ -72,9 +70,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-12" |
|
|
|
{!../../docs_src/async_tests/test_main.py!} |
|
|
|
``` |
|
|
|
{* ../../docs_src/async_tests/test_main.py hl[9:12] *} |
|
|
|
|
|
|
|
Das ist das Äquivalent zu: |
|
|
|
|
|
|
|