我正在设置 go 并尝试使用http://goconvey.co/ 进行一个简单的项目
我将 $GOPATH 设置为 /Users/joe/Desktop/playground/go
当我跑步时
$ 去 github.com/smartystreets/goconvey
它下载到我的 GOPATH 一切正常
所以当我在这里创建一个项目时 /Users/joe/Desktop/playground/go/some-project
并运行 goconvey 我得到
2015/02/04 14:41:05 shell.go:93: Please run goconvey from within your $GOPATH
我的测试代码是
package main
import (
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestStuff(t *testing.T) {
Convey("Truth", t, func() {
Convey("is falsey", func() {
So(false, ShouldBeFalse)
})
})
}
我不知道为什么它找不到文件。当我运行 go test 时,它运行良好。帮助?
侃侃尔雅
相关分类