mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-10 11:10:44 +08:00
14 lines
205 B
Go
14 lines
205 B
Go
package query
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCategoryLabels(t *testing.T) {
|
|
categories := CategoryLabels(1000, 0)
|
|
|
|
assert.GreaterOrEqual(t, 1, len(categories))
|
|
}
|