class RSpec::Matchers::BuiltIn::YieldWithArgs

def negative_failure_reason

def negative_failure_reason
  if all_args_match?
    "yielded with expected arguments" +
      "\nexpected not: #{@expected.inspect}" +
      "\n         got: #{@actual.inspect} (compared using === and ==)"
  else
    "did"
  end
end