github.com/jspc/eggos@v0.5.1-0.20221028160421-556c75c878a5/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  }