mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-04-17 20:56:53 -04:00
SDK-2760: Add mock module
This commit is contained in:
5
galaxy/api/mock.py
Normal file
5
galaxy/api/mock.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from unittest.mock import MagicMock
|
||||
|
||||
class AsyncMock(MagicMock):
|
||||
async def __call__(self, *args, **kwargs):
|
||||
return super(AsyncMock, self).__call__(*args, **kwargs)
|
||||
Reference in New Issue
Block a user