class RSpec::Matchers::BuiltIn::Compound::Or

Matcher used to represent a compound ‘or` expectation.
@api public

def conjunction

def conjunction
  "or"
end

def failure_message

Returns:
  • (String) -

Other tags:
    Api: - private
def failure_message
  compound_failure_message
end

def match(*)

def match(*)
  super
  matcher_1_matches? || matcher_2_matches?
end