mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
feat: add identity_file field to config connections config
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package fs
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestExpandHomeDir(t *testing.T) {
|
||||
t.Run("empty", func(t *testing.T) {
|
||||
assert.Equal(t, "", ExpandHomeDir(""))
|
||||
})
|
||||
|
||||
t.Run("no home", func(t *testing.T) {
|
||||
assert.Equal(t, "/path", ExpandHomeDir("/path"))
|
||||
})
|
||||
|
||||
t.Run("home", func(t *testing.T) {
|
||||
t.Setenv("HOME", "/home/user")
|
||||
assert.Equal(t, "/home/user/path", ExpandHomeDir("~/path"))
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user