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