import asyncio import pytest async def test_sample(loop): f = loop.crete_future() loop.call_soon(f.set_result, True) assert await f.
確定! 回上一頁