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

14 lines
210 B
Go

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