c98ed8a125
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
18 lines
329 B
Go
18 lines
329 B
Go
package query
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
)
|
|
|
|
func TestQuery_CategoryLabels(t *testing.T) {
|
|
conf := config.TestConfig()
|
|
|
|
search := New(conf.Db())
|
|
|
|
categories := search.CategoryLabels(1000, 0)
|
|
|
|
assert.Equal(t, "Flower", categories[0].Title)
|
|
}
|