fix: striping all received messages
This commit is contained in:
parent
5c3080e289
commit
9d6612a9d7
@ -65,7 +65,7 @@ class HebdoBot(IrcBot):
|
||||
"""
|
||||
channel = event.target
|
||||
sender = event.source.nick
|
||||
message = event.arguments[0]
|
||||
message = event.arguments[0].strip()
|
||||
if self.review.is_started:
|
||||
self.review.add_message(sender, message)
|
||||
|
||||
|
@ -10,3 +10,11 @@ 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"
|
||||
|
||||
|
||||
def test_public_message(bot):
|
||||
# Cheating here to save message sent
|
||||
bot.review.started = True
|
||||
bot.test_public_message(bot.channel, SENDER, " hello ")
|
||||
assert len(bot.answers) == 0
|
||||
assert bot.review.messages[0].text == "hello"
|
||||
|
Loading…
Reference in New Issue
Block a user