github.com/icexin/eggos@v0.4.2-0.20220216025428-78b167e4f349/tests/env_test.go (about) 1 package tests 2 3 import ( 4 "os" 5 "testing" 6 ) 7 8 func TestEnv(t *testing.T) { 9 for _, env := range os.Environ() { 10 t.Log(env) 11 } 12 }