2017-05-21 23:14:56 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
our_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
# 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
|
|
|
|
|
2017-05-24 23:12:57 -04:00
|
|
|
class TestDefineBot(BotTestCase):
|
|
|
|
bot_name = "define"
|
|
|
|
|
|
|
|
def test_bot(self):
|
|
|
|
self.assert_bot_output(
|
2017-05-24 20:45:00 -04:00
|
|
|
{'content': "foo", 'type': "private", 'sender_email': "foo"},
|
2017-05-24 23:12:57 -04:00
|
|
|
"**foo**:\nDefinition not available."
|
|
|
|
)
|
|
|
|
self.assert_bot_output(
|
2017-05-24 20:45:00 -04:00
|
|
|
{'content': "cat", 'type': "stream", 'display_recipient': "foo", 'subject': "foo"},
|
|
|
|
("**cat**:\n\n* (**noun**) a small domesticated carnivorous mammal "
|
2017-05-24 23:12:57 -04:00
|
|
|
"with soft fur, a short snout, and retractile claws. It is widely "
|
|
|
|
"kept as a pet or for catching mice, and many breeds have been "
|
|
|
|
"developed.\n their pet cat\n\n"),
|
|
|
|
)
|