master
Carlo Strub 7 years ago
parent 0538ebba38
commit d3f2f6b099

@ -14,6 +14,8 @@ install:
- go get -v github.com/Masterminds/glide
- cd $GOPATH/src/github.com/Masterminds/glide && go install && cd -
- glide install
- go get github.com/onsi/gomega
- go get github.com/onsi/ginkgo/ginkgo
script:
- go test
- ginkgo -r --randomizeAllSpecs --randomizeSuites --failOnPending --trace --race --compilers=2

@ -0,0 +1,13 @@
package main_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestSisyphus(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Sisyphus Suite")
}
Loading…
Cancel
Save