mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
16 lines
315 B
Go
16 lines
315 B
Go
package criteria
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo/v2"
|
|
"github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("fields", func() {
|
|
Describe("mapFields", func() {
|
|
It("ignores random fields", func() {
|
|
m := map[string]interface{}{"random": "123"}
|
|
m = mapFields(m)
|
|
gomega.Expect(m).To(gomega.BeEmpty())
|
|
})
|
|
})
|
|
})
|