bot tests: Eliminate BotTestCaseBase.

We now just put `test_bot_usage` in StubBotTestCase and have
BotTestCase inherit from that.
This commit is contained in:
Steve Howell 2017-11-30 16:24:20 -08:00 committed by showell
parent 205f7c16c7
commit fc251460fa
3 changed files with 10 additions and 12 deletions

View file

@ -5,9 +5,9 @@ from __future__ import print_function
import json
from zulip_bots.test_lib import BotTestCaseBase
from zulip_bots.test_lib import BotTestCase
class TestGithubDetailBot(BotTestCaseBase):
class TestGithubDetailBot(BotTestCase):
bot_name = "github_detail"
mock_config = {'owner': 'zulip', 'repo': 'zulip'}