Co-authored-by: Bruno Oliveira <nicoddemus@gmail.com> Co-authored-by: Thomas Grainger <tagrain@gmail.com> Co-authored-by: Kyle Altendorf <sda@fstab.net>
9 lines
95 B
Python
9 lines
95 B
Python
import trio
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.trio
|
|
async def test_sleep():
|
|
await trio.sleep(0)
|