summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/spf13/cobra/cobra/cmd/helpers_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/spf13/cobra/cobra/cmd/helpers_test.go')
-rw-r--r--vendor/github.com/spf13/cobra/cobra/cmd/helpers_test.go40
1 files changed, 0 insertions, 40 deletions
diff --git a/vendor/github.com/spf13/cobra/cobra/cmd/helpers_test.go b/vendor/github.com/spf13/cobra/cobra/cmd/helpers_test.go
deleted file mode 100644
index bd0f75951..000000000
--- a/vendor/github.com/spf13/cobra/cobra/cmd/helpers_test.go
+++ /dev/null
@@ -1,40 +0,0 @@
-package cmd
-
-import (
- "fmt"
- "os"
- "path/filepath"
- "testing"
-)
-
-var _ = fmt.Println
-var _ = os.Stderr
-
-func checkGuess(t *testing.T, wd, input, expected string) {
- testWd = wd
- inputPath = input
- guessProjectPath()
-
- if projectPath != expected {
- t.Errorf("Unexpected Project Path. \n Got: %q\nExpected: %q\n", projectPath, expected)
- }
-
- reset()
-}
-
-func reset() {
- testWd = ""
- inputPath = ""
- projectPath = ""
-}
-
-func TestProjectPath(t *testing.T) {
- checkGuess(t, "", filepath.Join("github.com", "spf13", "hugo"), filepath.Join(getSrcPath(), "github.com", "spf13", "hugo"))
- checkGuess(t, "", filepath.Join("spf13", "hugo"), filepath.Join(getSrcPath(), "github.com", "spf13", "hugo"))
- checkGuess(t, "", filepath.Join("/", "bar", "foo"), filepath.Join("/", "bar", "foo"))
- checkGuess(t, "/bar/foo", "baz", filepath.Join("/", "bar", "foo", "baz"))
- checkGuess(t, "/bar/foo/cmd", "", filepath.Join("/", "bar", "foo"))
- checkGuess(t, "/bar/foo/command", "", filepath.Join("/", "bar", "foo"))
- checkGuess(t, "/bar/foo/commands", "", filepath.Join("/", "bar", "foo"))
- checkGuess(t, "github.com/spf13/hugo/../hugo", "", filepath.Join("github.com", "spf13", "hugo"))
-}