Sign in
apache
/
caldera
/
refs/heads/pytest
/
.
/
tests
/
__init__.py
blob: 41cf6b56e60beb6531975f3eae050fcf6eba8b91 [
file
]
from
unittest
.
mock
import
MagicMock
class
AsyncMock
(
MagicMock
):
async
def
__call__
(
self
,
*
args
,
**
kwargs
):
return
super
(
AsyncMock
,
self
).
__call__
(*
args
,
**
kwargs
)