class RSpec::Mocks::BaseExpectation

def called_max_times?

def called_max_times?
  @expected_received_count != :any && @expected_received_count > 0 &&
    @actual_received_count >= @expected_received_count
end