QuickSend method added to bot

This commit is contained in:
Gleb Sinyavsky 2015-12-13 20:38:09 +03:00
parent 1cede9cf45
commit 1a3e995b37
3 changed files with 18 additions and 0 deletions

View file

@ -342,6 +342,16 @@ func TestSendChatConfig(t *testing.T) {
}
}
func TestQuickSend(t *testing.T) {
bot, _ := getBot(t)
_, err := bot.QuickSend(ChatID, "test message")
if err != nil {
t.Fail()
}
}
func TestGetUserProfilePhotos(t *testing.T) {
bot, _ := getBot(t)