13 lines
161 B
Go
13 lines
161 B
Go
package config
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Unsetenv("CLIAMP_CONFIG_DIR")
|
|
os.Unsetenv("XDG_CONFIG_HOME")
|
|
os.Exit(m.Run())
|
|
}
|