Method: FlexMock::AtLeastCountValidator#validate

Defined in:
lib/flexmock/validators.rb

#validate(n) ⇒ Object

Validate the method expectation was called no more than n times.



96
97
98
# File 'lib/flexmock/validators.rb', line 96

def validate(n)
  validate_count(n) { n >= @limit }
end