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)
|