navidrome/persistence/sql_search_test.go
Deluan 4f90fa9924 Add denormalized list of artist_ids to album, to speed-up artist's albums queries
This will be removed once we have a proper many-to-many relationship between album and artist
2020-12-13 14:05:48 -05:00

15 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"))
})
})
})