0b1bcf0d4a
As a side effect, we need less configuration values. Signed-off-by: Michael Mayer <michael@liquidbytes.net>
25 lines
359 B
Go
25 lines
359 B
Go
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)
|
|
}
|
|
}
|