Files
photoprism/internal/entity/src_test.go
2025-10-07 20:01:43 +02:00

16 lines
251 B
Go

package entity
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPriorities_Report(t *testing.T) {
t.Run("Len", func(t *testing.T) {
rows, cols := SrcPriority.Report()
assert.Len(t, cols, 3)
assert.NotEmpty(t, rows)
})
}