mirror of
https://github.com/home-assistant/core.git
synced 2026-05-22 16:30:27 +01:00
2af984917e
* Use asynctest-mock in most places * Fix broken patch in pilight
12 lines
312 B
Python
12 lines
312 B
Python
"""Common test utilities."""
|
|
from tests.async_mock import Mock
|
|
|
|
|
|
class AsyncMock(Mock):
|
|
"""Implements Mock async."""
|
|
|
|
# pylint: disable=useless-super-delegation
|
|
async def __call__(self, *args, **kwargs):
|
|
"""Hack for async support for Mock."""
|
|
return super().__call__(*args, **kwargs)
|