mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-27 05:08:13 +08:00
14 lines
193 B
Go
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)
|
|
}
|