photoprism/internal/classify/rules_test.go

15 lines
276 B
Go
Raw Normal View History

package classify
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestLabelRules_Find(t *testing.T) {
result := rules.Find("cat")
assert.Equal(t, "cat", result.Label)
assert.Equal(t, "animal", result.Categories[0])
assert.Equal(t, 5, result.Priority)
}