mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 05:32:18 +00:00
Initial Commit
This commit is contained in:
parent
f5d766bffe
commit
7c9c23ac92
14 changed files with 831 additions and 1 deletions
14
test/jellyfin_test.go
Normal file
14
test/jellyfin_test.go
Normal 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)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue