photoprism/internal/config/options_report_test.go
2023-08-30 16:30:06 +02:00

14 lines
193 B
Go

package config
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestOptions_Report(t *testing.T) {
m := Options{}
r, _ := m.Report()
assert.GreaterOrEqual(t, len(r), 1)
}