package testutil

import 

// WithTempEnv sets an environment variable to a temporary value, and returns a
// function for restoring the old value.
func (,  string) func() {
	 := os.Getenv()
	os.Setenv(, )
	return func() { os.Setenv(, ) }
}