Create multi-exec binary

This commit is contained in:
Darren Shepherd
2018-06-19 18:31:12 -07:00
committed by Brad Davidson
parent 1fb5bf669e
commit 926bc0209d
154 changed files with 15991 additions and 37 deletions

22
vendor/github.com/onsi/ginkgo/internal/global/init.go generated vendored Normal file
View File

@@ -0,0 +1,22 @@
package global
import (
"time"
"github.com/onsi/ginkgo/internal/failer"
"github.com/onsi/ginkgo/internal/suite"
)
const DefaultTimeout = time.Duration(1 * time.Second)
var Suite *suite.Suite
var Failer *failer.Failer
func init() {
InitializeGlobals()
}
func InitializeGlobals() {
Failer = failer.New()
Suite = suite.New(Failer)
}