add testing for twitch accountr atelimits

This commit is contained in:
lyx0 2021-10-28 22:26:00 +02:00
parent 432edf4e63
commit fed429678a

View file

@ -0,0 +1,19 @@
package aiden
import (
"testing"
)
func TestAidenBotRatelimits(t *testing.T) {
t.Run("returns a twitch accounts ratelimits", func(t *testing.T) {
requestPajbot, _ := ApiCall("api/v1/twitch/botStatus/pajbot?includeLimits=1")
requestNourybot, _ := ApiCall("api/v1/twitch/botStatus/nourybot?includeLimits=1")
got := requestPajbot
want := requestNourybot
if got != want {
t.Errorf("got %q, want %q", got, want)
}
})
}