diff options
| -rw-r--r-- | tests/bot/cogs/sync/test_base.py | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/tests/bot/cogs/sync/test_base.py b/tests/bot/cogs/sync/test_base.py index f4ea33823..e509b3c98 100644 --- a/tests/bot/cogs/sync/test_base.py +++ b/tests/bot/cogs/sync/test_base.py @@ -77,3 +77,11 @@ class SyncerBaseTests(unittest.TestCase):          mock_channel.send.assert_called_once()          self.assertIn(self.syncer._CORE_DEV_MENTION, mock_channel.send.call_args[0][0]) + +    def test_send_prompt_adds_reactions(self): +        """The message should have reactions for confirmation added.""" +        msg = helpers.MockMessage() +        asyncio.run(self.syncer._send_prompt(msg)) + +        calls = [mock.call(emoji) for emoji in self.syncer._REACTION_EMOJIS] +        msg.add_reaction.assert_has_calls(calls) | 
