Files
livekit/pkg/config/config_test.go
2021-01-30 13:20:39 -08:00

16 lines
282 B
Go

package config
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestConfig_UnmarshalKeys(t *testing.T) {
conf, err := NewConfig("")
assert.NoError(t, err)
assert.NoError(t, conf.unmarshalKeys("key1: secret1"))
assert.Equal(t, "secret1", conf.Keys["key1"])
}