add banphrase tests

This commit is contained in:
lyx0 2021-10-28 23:01:05 +02:00
parent e247cbd11e
commit 7a702cb473

30
cmd/bot/banphrase_test.go Normal file
View file

@ -0,0 +1,30 @@
package bot
import "testing"
func TestBanphrase(t *testing.T) {
t.Run("tests the banphrase api", func(t *testing.T) {
// Banned message
request, _ := CheckMessage("https://gyazo.com/asda")
response := true
got := request
want := response
if got != want {
t.Errorf("got %v, want %v", got, want)
}
// Okay message
request, _ = CheckMessage("LUL")
response = false
got = request
want = response
if got != want {
t.Errorf("got %v, want %v", got, want)
}
})
}