Files
photoprism/internal/config/develop_test.go
2025-02-03 12:29:02 +01:00

13 lines
186 B
Go

package config
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestDevelop(t *testing.T) {
c := NewConfig(CliTestContext())
assert.Equal(t, Develop, c.Develop())
}