package provider import ( "os" "testing" ) func TestGetSettings(t *testing.T) { os.Setenv("ENVIRONMENT", "dev") s := GetSettingsFile("") if s != nil { t.Errorf("empty settings: %v", s) } }