mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
9 lines
242 B
Python
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
|