mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
15 lines
269 B
Go
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)
|
||
|
}
|
||
|
}
|