842da9f09b
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
13 lines
205 B
Go
13 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))
|
|
}
|