hebdobot/tests/test_bot.py

13 lines
368 B
Python

from tests.utils import bot, OWNER, SENDER
def test_private_message(bot):
bot.test_private_message(bot.channel, SENDER, "hello")
assert len(bot.answers) == 0
def test_private_command(bot):
bot.test_private_message(bot.channel, SENDER, "!hello")
assert len(bot.answers) == 1
assert bot.answers[0].message == "Vos commandes dans le salon public"