Method: FlexMock::AtLeastCountValidator#describe

Defined in:
lib/flexmock/validators.rb

#describeObject

Human readable description of the validator.



101
102
103
104
105
106
107
# File 'lib/flexmock/validators.rb', line 101

def describe
  if @limit == 0
    ".zero_or_more_times"
  else
    ".at_least#{super}"
  end
end