summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/internal
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2020-06-01 10:55:39 +0000
committerDaniel J Walsh <dwalsh@redhat.com>2020-06-02 07:22:54 -0400
commit288bb2e858521dc8b90c33c4b8bcd83ddba15997 (patch)
treecbb150575eb53efaef81c5038ff8f3bb31ab2553 /vendor/github.com/onsi/ginkgo/internal
parent92f502983885566a0b7bca4ae6c1bc5a8414a482 (diff)
downloadpodman-288bb2e858521dc8b90c33c4b8bcd83ddba15997.tar.gz
podman-288bb2e858521dc8b90c33c4b8bcd83ddba15997.tar.bz2
podman-288bb2e858521dc8b90c33c4b8bcd83ddba15997.zip
Bump github.com/onsi/ginkgo from 1.12.2 to 1.12.3
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.12.2 to 1.12.3. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v1.12.2...v1.12.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'vendor/github.com/onsi/ginkgo/internal')
-rw-r--r--vendor/github.com/onsi/ginkgo/internal/global/init.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/github.com/onsi/ginkgo/internal/global/init.go b/vendor/github.com/onsi/ginkgo/internal/global/init.go
new file mode 100644
index 000000000..711443200
--- /dev/null
+++ b/vendor/github.com/onsi/ginkgo/internal/global/init.go
@@ -0,0 +1,18 @@
+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() {
+ Failer = failer.New()
+ Suite = suite.New(Failer)
+}