core/tests/async_mock.py

10 lines
221 B
Python
Raw Normal View History

"""Mock utilities that are async aware."""
import sys
if sys.version_info[:2] < (3, 8):
from asynctest.mock import * # noqa
2020-08-29 06:23:55 +00:00
AsyncMock = CoroutineMock # noqa: F405
else:
from unittest.mock import * # noqa