lbry.go/util/slack_test.go

16 lines
249 B
Go
Raw Normal View History

package util
import (
"os"
"testing"
)
func TestSendToSlack(t *testing.T) {
slackToken := os.Getenv("SLACK_TOKEN")
if slackToken == "" {
t.Error("A slack token was not provided")
}
InitSlack(slackToken)
SendToSlack("This is a test :)")
}