mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2025-02-04 12:05:57 +00:00
8cc672bed9
Signed-off-by: Carlos Eduardo Arango Gutierrez <eduardoa@nvidia.com>
30 lines
750 B
Go
30 lines
750 B
Go
package matchers
|
|
|
|
import (
|
|
"github.com/onsi/gomega/types"
|
|
)
|
|
|
|
type NotMatcher struct {
|
|
Matcher types.GomegaMatcher
|
|
}
|
|
|
|
func (m *NotMatcher) Match(actual interface{}) (bool, error) {
|
|
success, err := m.Matcher.Match(actual)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return !success, nil
|
|
}
|
|
|
|
func (m *NotMatcher) FailureMessage(actual interface{}) (message string) {
|
|
return m.Matcher.NegatedFailureMessage(actual) // works beautifully
|
|
}
|
|
|
|
func (m *NotMatcher) NegatedFailureMessage(actual interface{}) (message string) {
|
|
return m.Matcher.FailureMessage(actual) // works beautifully
|
|
}
|
|
|
|
func (m *NotMatcher) MatchMayChangeInTheFuture(actual interface{}) bool {
|
|
return types.MatchMayChangeInTheFuture(m.Matcher, actual) // just return m.Matcher's value
|
|
}
|