You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
425 B
24 lines
425 B
package util
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAllKeysWithEnv(t *testing.T) {
|
|
|
|
v := GetViper()
|
|
v.BindEnv("id")
|
|
v.BindEnv("foo", "foo")
|
|
|
|
// bind and define environment variables (including a nested one)
|
|
os.Setenv("WEED_ID", "13")
|
|
os.Setenv("WEED_FOO_BAR", "baz")
|
|
|
|
sub := v.Sub("foo")
|
|
|
|
assert.Equal(t, "13", v.GetString("id"))
|
|
assert.Equal(t, "baz", sub.GetString("bar"))
|
|
}
|