2017-05-27 17:57:15 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2017-05-29 17:14:11 -04:00
|
|
|
from six.moves import zip
|
2017-05-27 17:57:15 -04:00
|
|
|
|
|
|
|
our_dir = os.path.dirname(os.path.abspath(__file__))
|
2017-05-30 02:10:19 -04:00
|
|
|
sys.path.insert(0, os.path.normpath(os.path.join(our_dir)))
|
2017-05-27 17:57:15 -04:00
|
|
|
# For dev setups, we can find the API in the repo itself.
|
|
|
|
if os.path.exists(os.path.join(our_dir, '..')):
|
|
|
|
sys.path.insert(0, '..')
|
|
|
|
from bots_test_lib import BotTestCase
|
|
|
|
|
|
|
|
class TestHelpBot(BotTestCase):
|
|
|
|
bot_name = "help"
|
|
|
|
|
|
|
|
def test_bot(self):
|
2017-05-29 17:14:11 -04:00
|
|
|
txt = "Info on Zulip can be found here:\nhttps://github.com/zulip/zulip"
|
|
|
|
messages = ["", "help", "Hi, my name is abc"]
|
|
|
|
self.check_expected_responses(dict(list(zip(messages, len(messages)*[txt]))))
|