module RSpec::Matchers::BuiltIn::CountExpectation

def human_readable_count(count)

def human_readable_count(count)
  case count
  when Range then " #{count.first} and #{count.last} times"
  when nil then ''
  when 1 then ' once'
  when 2 then ' twice'
  else " #{count} times"
  end
end