summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/types/synchronization.go
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2020-12-02 09:24:47 -0500
committerReinhard Tartler <siretart@tauware.de>2020-12-02 09:24:58 -0500
commit29cc1453eab24cbbfcdd21b9b86a36ff3183a840 (patch)
tree6a8ea32fea737936384e95e2ba2109dfc373697c /vendor/github.com/onsi/ginkgo/types/synchronization.go
parent8086b728c2d5c06e05010693cdbe64e972a31128 (diff)
delete vendor tree
Diffstat (limited to 'vendor/github.com/onsi/ginkgo/types/synchronization.go')
-rw-r--r--vendor/github.com/onsi/ginkgo/types/synchronization.go30
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/github.com/onsi/ginkgo/types/synchronization.go b/vendor/github.com/onsi/ginkgo/types/synchronization.go
deleted file mode 100644
index fdd6ed5..0000000
--- a/vendor/github.com/onsi/ginkgo/types/synchronization.go
+++ /dev/null
@@ -1,30 +0,0 @@
-package types
-
-import (
- "encoding/json"
-)
-
-type RemoteBeforeSuiteState int
-
-const (
- RemoteBeforeSuiteStateInvalid RemoteBeforeSuiteState = iota
-
- RemoteBeforeSuiteStatePending
- RemoteBeforeSuiteStatePassed
- RemoteBeforeSuiteStateFailed
- RemoteBeforeSuiteStateDisappeared
-)
-
-type RemoteBeforeSuiteData struct {
- Data []byte
- State RemoteBeforeSuiteState
-}
-
-func (r RemoteBeforeSuiteData) ToJSON() []byte {
- data, _ := json.Marshal(r)
- return data
-}
-
-type RemoteAfterSuiteData struct {
- CanRun bool
-}