diff --git a/cmd/bot/banphrase_test.go b/cmd/bot/banphrase_test.go new file mode 100644 index 0000000..302ebb4 --- /dev/null +++ b/cmd/bot/banphrase_test.go @@ -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) + } + + }) +}