1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-24 09:20:11 +01:00
Files
core/tests/async_mock.py
T
2020-04-30 13:29:50 -07:00

9 lines
242 B
Python

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