Remove default value from assert_bot_server_response message parameter.

This is the first step in validating the bot responses for the
botserver. The default value for `message` was nonsense and
wouldn't trigger a bot in real life. Additionally, we'll want
each test to use a proper message tailored to the test. Thus,
this commit removes a 'default' message alltogether.
This commit is contained in:
Robert Hönig 2018-05-28 17:26:02 +02:00 committed by Tim Abbott
parent 6a8cb2965c
commit 48f2c2ae36
2 changed files with 6 additions and 3 deletions

View file

@ -79,8 +79,11 @@ class BotServerTests(BotServerTestCase):
ImportError,
"Bot \"nonexistent-bot\" doesn't exists. Please "
"make sure you have set up the flaskbotrc file correctly.",
lambda: self.assert_bot_server_response(available_bots=available_bots,
bots_config=bots_config))
lambda: self.assert_bot_server_response(
available_bots=available_bots,
message=dict(message={'content': "test message"},
bot_email='helloworld-bot@zulip.com'),
bots_config=bots_config))
@mock.patch('sys.argv', ['zulip-bot-server', '--config-file', '/foo/bar/baz.conf'])
def test_argument_parsing_defaults(self) -> None: