Add SendMediaGroup method.

This commit is contained in:
Syfaro 2018-12-25 15:44:01 -06:00
parent 5781187bc2
commit fa40708257
2 changed files with 25 additions and 1 deletions

View file

@ -517,10 +517,19 @@ func TestSendWithMediaGroup(t *testing.T) {
NewInputMediaPhoto("https://i.imgur.com/J5qweNZ.jpg"),
NewInputMediaVideo("https://i.imgur.com/F6RmI24.mp4"),
})
_, err := bot.Request(cfg)
messages, err := bot.SendMediaGroup(cfg)
if err != nil {
t.Error(err)
}
if messages == nil {
t.Error()
}
if len(messages) != 3 {
t.Error()
}
}
func ExampleNewBotAPI() {