class RSpec::Matchers::BuiltIn::YieldWithNoArgs

def failure_reason

def failure_reason
  if @probe.num_yields.zero?
    "did not yield"
  else
    "yielded with arguments: #{@probe.single_yield_args.inspect}"
  end
end