Method: RSpec::Matchers::BuiltIn::CountExpectation#at_most

Defined in:
lib/rspec/matchers/built_in/count_expectation.rb

#at_most(number) ⇒ Object

Specifies the maximum number of times the method is expected to match



35
36
37
38
# File 'lib/rspec/matchers/built_in/count_expectation.rb', line 35

def at_most(number)
  set_expected_count(:<=, number)
  self
end