You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

724 B

イベントのテスト: lifespan と startup - shutdown

テストで lifespan を実行する必要がある場合は、with 文と併用して TestClient を使用できます:

{* ../../docs_src/app_testing/tutorial004_py310.py hl[9:15,18,27:28,30:32,41:43] *}

より詳しい内容は、公式 Starlette ドキュメントの「テストでの lifespan の実行」 を参照してください。

非推奨の startup および shutdown イベントについては、次のように TestClient を使用できます:

{* ../../docs_src/app_testing/tutorial003_py310.py hl[9:12,20:24] *}