photoprism/internal/hub/config_test.go

15 lines
239 B
Go
Raw Normal View History

2020-12-04 13:10:32 +01:00
package hub
2020-10-20 11:05:02 +02:00
import (
"testing"
2020-11-21 18:08:41 +01:00
"github.com/stretchr/testify/assert"
2020-10-20 11:05:02 +02:00
)
func TestConfig_MapKey(t *testing.T) {
t.Run("success", func(t *testing.T) {
c := NewConfig("0.0.0", "testdata/new.yml")
2020-10-20 11:05:02 +02:00
assert.Equal(t, "", c.MapKey())
})
}