예제 #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()
예제 #2
0
파일: test_plugins.py 프로젝트: jck/peru
def test_plugin_fetch(context, type, fields, dest):
    handle = TestDisplayHandle()
    async.run_task(
        plugin.plugin_fetch(context, type, fields, dest, handle))
    return handle.getvalue()
예제 #3
0
def plugin_fetch(*args, **kwargs):
    return asyncio.get_event_loop().run_until_complete(
        plugin.plugin_fetch(*args, **kwargs))