class RSpec::Mocks::MessageExpectation

def called_max_times?

Other tags:
    Private: -
def called_max_times?
  @expected_received_count != :any &&
    !@at_least &&
    @expected_received_count > 0 &&
    @actual_received_count >= @expected_received_count
end