aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2019-10-11 15:20:57 -0700
committerGravatar GitHub <[email protected]>2019-10-11 15:20:57 -0700
commit9ef77965af151e27ad1094d41e44c34e2e56513b (patch)
tree5772d5cf53faa9c38f68a78775dd8b20c7d39737 /tests/helpers.py
parentMerge pull request #506 from python-discord/token-regex-tweak (diff)
parentRaise `ValueError` on negative `max_units`. (diff)
Merge pull request #421 from python-discord/bot-utils-time-tests
Add tests for `bot.utils.time`.
Diffstat (limited to 'tests/helpers.py')
-rw-r--r--tests/helpers.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/helpers.py b/tests/helpers.py
index 2908294f7..25059fa3a 100644
--- a/tests/helpers.py
+++ b/tests/helpers.py
@@ -7,6 +7,10 @@ __all__ = ('AsyncMock', 'async_test')
# TODO: Remove me on 3.8
+# Allows you to mock a coroutine. Since the default `__call__` of `MagicMock`
+# is not a coroutine, trying to mock a coroutine with it will result in errors
+# as the default `__call__` is not awaitable. Use this class for monkeypatching
+# coroutines instead.
class AsyncMock(MagicMock):
async def __call__(self, *args, **kwargs):
return super(AsyncMock, self).__call__(*args, **kwargs)