1
0
telegram/test/bot_test.go

16 lines
202 B
Go
Raw Normal View History

2018-02-15 13:57:29 +00:00
package test
import (
"os"
"testing"
2018-06-20 12:50:52 +00:00
"gitlab.com/toby3d/telegram"
2018-02-15 13:57:29 +00:00
)
var bot = new(telegram.Bot)
func TestMain(m *testing.M) {
2018-08-21 11:05:47 +00:00
bot.AccessToken = os.Getenv("BOT_ACCESS_TOKEN")
2018-02-15 13:57:29 +00:00
os.Exit(m.Run())
}