aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2020-03-08 22:20:00 +0100
committerGravatar Numerlor <[email protected]>2020-03-08 22:20:00 +0100
commitcfbe3b9742b5531bdced1d5b099739f01033a6bb (patch)
tree43232b33e097e689d499d73189875f31b7f38885 /tests
parentAdd test for `silence` discord output. (diff)
Add test for `unsilence` discord output.
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/cogs/moderation/test_silence.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bot/cogs/moderation/test_silence.py b/tests/bot/cogs/moderation/test_silence.py
index 088410bee..17420ce7d 100644
--- a/tests/bot/cogs/moderation/test_silence.py
+++ b/tests/bot/cogs/moderation/test_silence.py
@@ -56,3 +56,12 @@ class SilenceTests(unittest.TestCase):
):
asyncio.run(self.cog.silence.callback(*silence_call_args))
self.ctx.send.call_args.assert_called_once_with(result_message)
+
+ def test_unsilence_sent_correct_discord_message(self):
+ """Check if proper message was sent to `alert_chanel`."""
+ with mock.patch(
+ "bot.cogs.moderation.silence.Silence._unsilence",
+ new_callable=partial(mock.AsyncMock, return_value=True)
+ ):
+ asyncio.run(self.cog.unsilence.callback(self.cog, self.ctx))
+ self.ctx.channel.send.call_args.assert_called_once_with(f"{Emojis.check_mark} Unsilenced #channel.")