コード例 #1
0
ファイル: pinger_test.py プロジェクト: CrownBerry/pybot
    def test_show_empty(self, config, bot, update):
        expected_message = "первого"
        pinger = Pinger(config)

        pinger.show(bot, update, [])

        assert expected_message in bot.get_message()
コード例 #2
0
ファイル: pinger_test.py プロジェクト: CrownBerry/pybot
    def test_show_no_exist_username(self, config, bot, update):
        expected_message = "No such user"
        pinger = Pinger(config)

        pinger.show(bot, update, ["@test_none"])

        assert expected_message in bot.get_message()
コード例 #3
0
ファイル: pinger_test.py プロジェクト: CrownBerry/pybot
    def test_show_no_nickname(self, config, bot, update):
        expected_message = "Usage:"
        pinger = Pinger(config)

        pinger.show(bot, update, ["fail"])

        assert expected_message in bot.get_message()
コード例 #4
0
ファイル: pinger_test.py プロジェクト: CrownBerry/pybot
    def test_show_username(self, config, bot, update):
        expected_message = "второго"
        pinger = Pinger(config)

        pinger.show(bot, update, ["@test_two"])

        assert expected_message in bot.get_message()