mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
14 lines
288 B
Go
14 lines
288 B
Go
package persistence
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "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"))
|
|
})
|
|
})
|
|
})
|