class RSpec::Matchers::BuiltIn::YieldControl

def human_readable_count

def human_readable_count
  case @expected_yields_count
  when 1 then "once"
  when 2 then "twice"
  else "#{@expected_yields_count} times"
  end
end