module RSpec::Matchers::DSL::Macros::Deprecated

def match_for_should_not(&definition)

Deprecated:
  • Use {Macros#match_when_negated} instead.
def match_for_should_not(&definition)
  RSpec.deprecate("`match_for_should_not`", :replacement => "`match_when_negated`")
  match_when_negated(&definition)
end