package oraclematcher

import "github.com/onsi/gomega/internal/oraclematcher"

Index

Functions

func MatchMayChangeInTheFuture

func MatchMayChangeInTheFuture(matcher types.GomegaMatcher, value interface{}) bool

Types

type OracleMatcher

type OracleMatcher interface {
	MatchMayChangeInTheFuture(actual interface{}) bool
}

GomegaMatchers that also match the OracleMatcher interface can convey information about whether or not their result will change upon future attempts.

This allows `Eventually` and `Consistently` to short circuit if success becomes impossible.

For example, a process' exit code can never change. So, gexec's Exit matcher returns `true` for `MatchMayChangeInTheFuture` until the process exits, at which point it returns `false` forevermore.

Source Files

oracle_matcher.go

Version
v1.13.0
Published
May 27, 2021
Platform
linux/amd64
Imports
1 packages
Last checked
5 days ago

Tools for package owners.