mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-05 15:42:18 +00:00
14 lines
269 B
Go
14 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)
|
|
}
|
|
}
|