module RSpec::Benchmark::Matchers

def perform_at_least(iterations, options = {})

Other tags:
    Api: - public

Parameters:
  • iterations (Integer) --
def perform_at_least(iterations, options = {})
  IterationMatcher::Matcher.new(iterations, options)
end

def perform_under(threshold, options = {})

Other tags:
    Api: - public

Parameters:
  • threshold (Float) --
def perform_under(threshold, options = {})
  TimingMatcher::Matcher.new(threshold, options)
end