Example #1
0
def test_chat_reply():
    bot = MockBot()
    msg = text_msg("Reply!")
    chat = TgChat.from_message(bot, msg)

    chat.reply("Hi " + repr(chat.sender))
    assert "sendMessage" in bot.calls
    assert bot.calls["sendMessage"]["text"] == "Hi John"