2017-05-27 23:38:33 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import print_function
|
|
|
|
|
2017-05-29 23:14:11 +02:00
|
|
|
from six.moves import zip
|
2017-05-27 23:38:33 +02:00
|
|
|
|
|
|
|
from bots_test_lib import BotTestCase
|
|
|
|
|
|
|
|
class TestHelloWorldBot(BotTestCase):
|
|
|
|
bot_name = "helloworld"
|
|
|
|
|
|
|
|
def test_bot(self):
|
2017-05-29 23:14:11 +02:00
|
|
|
txt = "beep boop"
|
|
|
|
messages = ["", "foo", "Hi, my name is abc"]
|
|
|
|
self.check_expected_responses(dict(list(zip(messages, len(messages)*[txt]))))
|