Browse Source

fix tests

pull/160/head
A5rocks 5 years ago
parent
commit
46654d5355
  1. 8
      tests/bot/bot.py

8
tests/bot/bot.py

@ -85,19 +85,19 @@ class TestBot(TestCase):
msg = Object() msg = Object()
msg.content = '!test a' msg.content = '!test a'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg)) commands = list(self.bot.get_commands_for_message(False, None, ['!'], msg))
self.assertEqual(commands[0][0], self.bot._commands[1]) self.assertEqual(commands[0][0], self.bot._commands[1])
self.assertEqual(commands[1][0], self.bot._commands[0]) self.assertEqual(commands[1][0], self.bot._commands[0])
msg.content = '!test' msg.content = '!test'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg)) commands = list(self.bot.get_commands_for_message(False, None, ['!'], msg))
self.assertEqual(commands[0][0], self.bot._commands[0]) self.assertEqual(commands[0][0], self.bot._commands[0])
msg.content = '?test a' msg.content = '?test a'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg, ['?', ';'])) commands = list(self.bot.get_commands_for_message(False, None, ['!', '?', ';'], msg))
self.assertEqual(commands[0][0], self.bot._commands[1]) self.assertEqual(commands[0][0], self.bot._commands[1])
self.assertEqual(commands[1][0], self.bot._commands[0]) self.assertEqual(commands[1][0], self.bot._commands[0])
msg.content = '?test' msg.content = '?test'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg, ['?', ';'])) commands = list(self.bot.get_commands_for_message(False, None, ['!', '?', ';'], msg, ['?', ';']))
self.assertEqual(commands[0][0], self.bot._commands[0]) self.assertEqual(commands[0][0], self.bot._commands[0])

Loading…
Cancel
Save