quintodrome/persistence/sql_search_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
288 B
Go
Raw Normal View History

package persistence
import (
2022-07-26 12:47:16 -08:00
. "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"))
2020-05-25 07:05:30 -08:00
})
})
})