1
0
mirror of https://github.com/home-assistant/core.git synced 2025-08-14 07:50:01 +00:00
Files
core/tests/async_mock.py
2020-08-29 08:23:55 +02:00

10 lines
221 B
Python

"""Mock utilities that are async aware."""
import sys
if sys.version_info[:2] < (3, 8):
from asynctest.mock import * # noqa
AsyncMock = CoroutineMock # noqa: F405
else:
from unittest.mock import * # noqa