mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
24 lines
454 B
Go
24 lines
454 B
Go
package homedir // import "github.com/docker/docker/pkg/homedir"
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func TestGet(t *testing.T) {
|
|
home := Get()
|
|
if home == "" {
|
|
t.Fatal("returned home directory is empty")
|
|
}
|
|
|
|
if !filepath.IsAbs(home) {
|
|
t.Fatalf("returned path is not absolute: %s", home)
|
|
}
|
|
}
|
|
|
|
func TestGetShortcutString(t *testing.T) {
|
|
shortcut := GetShortcutString()
|
|
if shortcut == "" {
|
|
t.Fatal("returned shortcut string is empty")
|
|
}
|
|
}
|