9 lines
98 B
Python
9 lines
98 B
Python
|
import anyio
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.mark.anyio
|
||
|
async def test_sleep():
|
||
|
await anyio.sleep(0)
|