spf13--cobra/cobra/cmd/project_test.go

26 lines
466 B
Go
Raw Normal View History

2017-05-05 08:06:27 +00:00
package cmd
import (
"path/filepath"
"testing"
)
func TestFindExistingPackage(t *testing.T) {
path := findPackage("github.com/spf13/cobra")
if path == "" {
t.Fatal("findPackage didn't find the existing package")
}
if !hasGoPathPrefix(path) {
t.Fatal("%q is not in GOPATH, but must be", path)
}
}
func hasGoPathPrefix(path string) bool {
for _, srcPath := range srcPaths {
if filepath.HasPrefix(path, srcPath) {
return true
}
}
return false
}