summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/gomega/matchers.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-05-06 06:24:19 -0400
committerGitHub <noreply@github.com>2021-05-06 06:24:19 -0400
commit0b05ba808d5e2fc75ce10b23405bd5c05da2c331 (patch)
tree7c489ea3aa926cda031d6aaa4a852e9e6e469d14 /vendor/github.com/onsi/gomega/matchers.go
parent9b9bd9e0e7b72c91d8e60103e8da7999cefbc63d (diff)
parent3de369fd696e6b98d00259d3c759d9b81df4e84b (diff)
downloadpodman-0b05ba808d5e2fc75ce10b23405bd5c05da2c331.tar.gz
podman-0b05ba808d5e2fc75ce10b23405bd5c05da2c331.tar.bz2
podman-0b05ba808d5e2fc75ce10b23405bd5c05da2c331.zip
Merge pull request #10241 from containers/dependabot/go_modules/github.com/onsi/gomega-1.12.0
Bump github.com/onsi/gomega from 1.11.0 to 1.12.0
Diffstat (limited to 'vendor/github.com/onsi/gomega/matchers.go')
-rw-r--r--vendor/github.com/onsi/gomega/matchers.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/github.com/onsi/gomega/matchers.go b/vendor/github.com/onsi/gomega/matchers.go
index 16218d4c5..667160ade 100644
--- a/vendor/github.com/onsi/gomega/matchers.go
+++ b/vendor/github.com/onsi/gomega/matchers.go
@@ -474,3 +474,11 @@ func Not(matcher types.GomegaMatcher) types.GomegaMatcher {
func WithTransform(transform interface{}, matcher types.GomegaMatcher) types.GomegaMatcher {
return matchers.NewWithTransformMatcher(transform, matcher)
}
+
+//Satisfy matches the actual value against the `predicate` function.
+//The given predicate must be a function of one paramter that returns bool.
+// var isEven = func(i int) bool { return i%2 == 0 }
+// Expect(2).To(Satisfy(isEven))
+func Satisfy(predicate interface{}) types.GomegaMatcher {
+ return matchers.NewSatisfyMatcher(predicate)
+}