GoScrobble/test/jellyfin_test.go
2021-03-23 21:43:44 +13:00

15 lines
269 B
Go

package goscrobble
import (
"testing"
"git.m2.nz/go-scrobble/internal/goscrobble"
)
func TestParseJellyfinInput(t *testing.T) {
got := goscrobble.ParseJellyfinInput("TestString!")
if got != "TestString!" {
t.Errorf("ParseJellyfinInput returned: %s", got)
}
}