GoScrobble/test/jellyfin_test.go

15 lines
269 B
Go
Raw Normal View History

2021-03-23 08:43:44 +00:00
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)
}
}