fastapi/tests/test_tutorial/test_async_tests/test_main.py
Felix Böhm 2fd28434dd
📝 Add documentation about async tests (pytest-asyncio and httpx) (#1619)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2020-08-08 20:01:18 +02:00

8 lines
145 B
Python

import pytest
from docs_src.async_tests.test_main import test_root
@pytest.mark.asyncio
async def test_async_testing():
await test_root()