blob: fd2c109c95542b80f6f05079495fbdbd4eab7455 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
from prompt_toolkit.eventloop import generator_to_async_generator, get_event_loop
def _sync_generator():
yield 1
yield 10
def test_generator_to_async_generator():
"""
Test conversion of sync to asycn generator.
This should run the synchronous parts in a background thread.
"""
async_gen = generator_to_async_generator(_sync_generator)
items = []
async def consume_async_generator():
async for item in async_gen:
items.append(item)
# Run the event loop until all items are collected.
get_event_loop().run_until_complete(consume_async_generator())
assert items == [1, 10]
|