photoprism/internal/entity/photo_counts_test.go

26 lines
359 B
Go
Raw Normal View History

package entity
import (
"testing"
)
func TestLabelCounts(t *testing.T) {
results := LabelCounts()
if len(results) == 0 {
t.Fatal("at least one result expected")
}
for _, result := range results {
t.Logf("LABEL COUNT: %+v", result)
}
}
func TestUpdatePhotoCounts(t *testing.T) {
err := UpdatePhotoCounts()
if err != nil {
t.Fatal(err)
}
}