Commit fd9a86c2 authored by Stefan Behnel's avatar Stefan Behnel

extend test

parent 7ca531c4
......@@ -70,6 +70,14 @@ def await_cyobject():
>>> buffer, result = run_async(run_await(awaiting(simple())))
>>> result
10
>>> buffer, result = run_async(run_await(awaiting(awaiting(simple()))))
>>> result
10
>>> buffer, result = run_async(run_await(awaiting(run_await(awaiting(simple())))))
>>> result
10
"""
async def simple():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment