mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
24 lines
616 B
Go
24 lines
616 B
Go
package scanner
|
|
|
|
import (
|
|
"github.com/navidrome/navidrome/conf"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("mapping", func() {
|
|
Describe("sanitizeFieldForSorting", func() {
|
|
BeforeEach(func() {
|
|
conf.Server.IgnoredArticles = "The O"
|
|
})
|
|
It("sanitize accents", func() {
|
|
Expect(sanitizeFieldForSorting("Céu")).To(Equal("Ceu"))
|
|
})
|
|
It("removes articles", func() {
|
|
Expect(sanitizeFieldForSorting("The Beatles")).To(Equal("Beatles"))
|
|
})
|
|
It("removes accented articles", func() {
|
|
Expect(sanitizeFieldForSorting("Õ Blésq Blom")).To(Equal("Blesq Blom"))
|
|
})
|
|
})
|
|
})
|