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.
25 lines
396 B
25 lines
396 B
4 years ago
|
package env_test
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"gitoa.ru/go-4devs/config/provider/env"
|
||
|
"gitoa.ru/go-4devs/config/test"
|
||
|
)
|
||
|
|
||
|
func TestProvider(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
|
||
|
os.Setenv("FDEVS_CONFIG_DSN", test.DSN)
|
||
|
os.Setenv("FDEVS_CONFIG_PORT", "8080")
|
||
|
|
||
|
provider := env.New()
|
||
|
|
||
|
read := []test.Read{
|
||
|
test.NewRead("dsn", test.DSN),
|
||
|
test.NewRead("port", 8080),
|
||
|
}
|
||
|
test.Run(t, provider, read)
|
||
|
}
|