12 lines
178 B
Go
12 lines
178 B
Go
//go:build windows || darwin
|
|
|
|
package store
|
|
|
|
import "testing"
|
|
|
|
func setTestHome(t *testing.T, home string) {
|
|
t.Helper()
|
|
t.Setenv("HOME", home)
|
|
t.Setenv("USERPROFILE", home)
|
|
}
|