Files
pytest2/testing/plugins_integration/pytest_trio_integration.py
2024-06-20 11:03:03 +02:00

12 lines
158 B
Python

# mypy: allow-untyped-defs
from __future__ import annotations
import trio
import pytest
@pytest.mark.trio
async def test_sleep():
await trio.sleep(0)