2019-01-20 15:21:26 -05:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSetGet(t *testing.T) {
|
|
|
|
cfg := ReadConfig(":memory:")
|
|
|
|
expected := "value"
|
|
|
|
cfg.Set("test", expected)
|
2019-01-21 19:16:57 -05:00
|
|
|
actual := cfg.Get("test", "NOPE")
|
2019-01-20 15:21:26 -05:00
|
|
|
assert.Equal(t, expected, actual, "Config did not store values")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetGetArray(t *testing.T) {
|
|
|
|
cfg := ReadConfig(":memory:")
|
|
|
|
expected := []string{"a", "b", "c"}
|
|
|
|
cfg.SetArray("test", expected)
|
2019-01-21 19:16:57 -05:00
|
|
|
actual := cfg.GetArray("test", []string{"NOPE"})
|
2019-01-20 15:21:26 -05:00
|
|
|
assert.Equal(t, expected, actual, "Config did not store values")
|
|
|
|
}
|