Exemplo n.º 1
0
def test_plugin_fetch(context, type, fields, dest):
    handle = TestDisplayHandle()
    run_task(plugin.plugin_fetch(context, type, fields, dest, handle))
    return handle.getvalue()
Exemplo n.º 2
0
def test_plugin_fetch(context, type, fields, dest):
    handle = TestDisplayHandle()
    async.run_task(
        plugin.plugin_fetch(context, type, fields, dest, handle))
    return handle.getvalue()
Exemplo n.º 3
0
def plugin_fetch(*args, **kwargs):
    return asyncio.get_event_loop().run_until_complete(
        plugin.plugin_fetch(*args, **kwargs))