DEBSOURCES
Skip Quicknav
sources / python-snapcast / 2.3.7-1 / tests / helpers.py
1234567
"""Asyncio test helpers from https://blog.miguelgrinberg.com/post/unit-testing-asyncio-code""" import asyncio def async_run(coro): return asyncio.run(coro)