Files
2026-07-13 12:27:58 +08:00

15 lines
199 B
Go

package appdir
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestUserHome(t *testing.T) {
td := t.TempDir()
t.Setenv("GOPASS_HOMEDIR", td)
assert.Equal(t, td, UserHome())
}