mirror of
https://github.com/spf13/cobra
synced 2024-11-05 05:17:12 +00:00
25 lines
460 B
Go
25 lines
460 B
Go
package cmd
|
|
|
|
import (
|
|
"strings"
|
|
"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.Fatalf("%q is not in GOPATH, but must be", path)
|
|
}
|
|
}
|
|
|
|
func hasGoPathPrefix(path string) bool {
|
|
for _, srcPath := range srcPaths {
|
|
if strings.HasPrefix(path, srcPath) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|