You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
telebot/telebot_test.go

13 lines
208 B
Go

package telebot
import "testing"
const TESTING_TOKEN = "107177593:AAHBJfF3nv3pZXVjXpoowVhv_KSGw56s8zo"
func TestCreate(t *testing.T) {
_, err := Create(TESTING_TOKEN)
if err != nil {
t.Fatal(err)
}
}