Compare commits

...

2 Commits

3 changed files with 13 additions and 5 deletions

View File

@ -15,7 +15,7 @@ import settings
class HebdoBot(IrcBot):
def __init__(self, settings):
super().__init__(settings)
self.VERSION = "3.0.0"
self.VERSION = "3.1.0"
self.review = Review()
for event in events:
@ -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)

View File

@ -30,9 +30,9 @@ class Help:
" !fin : terminer la revue en cours",
" !stop  : abandonner la revue en cours",
" ",
"Autres commandes : !anniv, !bonjour, !chrono, !date, !hello, "
"!licence, !manquantes, !merci, !record, !salut, !stats, !status, "
"!version",
"Autres commandes : !anniv, !bonjour, !chrono, !complet, !date, "
"!hello, !licence, !manquantes, !merci, !record, !salut, !stats, "
"!status, !version",
),
)

View File

@ -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"