mostr-zulip-bot/zulip_bots/zulip_bots/bots/help/test_help.py
derAnfaenger 8761e47893 zulip_bots: Store testing conversations in lists.
This enforces the use of a list of tuples for
conversations, as opposed to dicts.
2017-10-24 11:14:09 +02:00

16 lines
467 B
Python
Executable file

#!/usr/bin/env python
from __future__ import absolute_import
from __future__ import print_function
from six.moves import zip
from zulip_bots.test_lib import BotTestCase
class TestHelpBot(BotTestCase):
bot_name = "help"
def test_bot(self):
txt = "Info on Zulip can be found here:\nhttps://github.com/zulip/zulip"
messages = ["", "help", "Hi, my name is abc"]
self.check_expected_responses(list(zip(messages, len(messages)*[txt])))