Files
memby/server/internal/api/cast_test.go
T

17 lines
320 B
Go
Raw Normal View History

2026-07-29 15:26:40 +12:00
package api
import (
"strings"
"testing"
)
func TestDetailFieldsIncludeEmbyPeople(t *testing.T) {
fields := strings.Split(fieldsDetail, ",")
for _, field := range fields {
if field == "People" {
return
}
}
t.Fatal("detail responses must request Emby's People field for cast metadata and portrait tags")
}