mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
31 lines
499 B
Go
31 lines
499 B
Go
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)
|
|
}
|
|
|
|
})
|
|
}
|