gopass/pkg/appdir/appdir_test.go
Dominik Schulz f58454452f
Increase test coverage (#2461)
RELEASE_NOTES=n/a

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2022-12-10 23:05:33 +01: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())
}