mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
This will be removed once we have a proper many-to-many relationship between album and artist
14 lines
285 B
Go
14 lines
285 B
Go
package persistence
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("sqlRepository", func() {
|
|
Describe("getFullText", func() {
|
|
It("prefixes with a space", func() {
|
|
Expect(getFullText("legiao urbana")).To(Equal(" legiao urbana"))
|
|
})
|
|
})
|
|
})
|