mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00
10 lines
221 B
Python
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
|