Initial Commit

This commit is contained in:
Daniel Mason 2021-03-23 21:43:44 +13:00
parent f5d766bffe
commit 7c9c23ac92
14 changed files with 831 additions and 1 deletions

14
test/jellyfin_test.go Normal file
View file

@ -0,0 +1,14 @@
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)
}
}