1
0
telegram/test/bot_test.go
Maxim Lebedev 4b96c01da6
Updated tests
2018-08-21 16:05:47 +05:00

16 lines
202 B
Go

package test
import (
"os"
"testing"
"gitlab.com/toby3d/telegram"
)
var bot = new(telegram.Bot)
func TestMain(m *testing.M) {
bot.AccessToken = os.Getenv("BOT_ACCESS_TOKEN")
os.Exit(m.Run())
}