Class: ActiveSupport::Testing::Performance::Metrics::CpuTime

Inherits:
Time
  • Object
show all
Defined in:
lib/active_support/testing/performance.rb

Constant Summary collapse

Mode =
RubyProf::CPU_TIME

Instance Attribute Summary

Attributes inherited from Base

#total

Instance Method Summary collapse

Methods inherited from Time

#format

Methods inherited from Base

#benchmark, #measure_mode, #name, #profile

Constructor Details

#initialize(*args) ⇒ CpuTime

Returns a new instance of CpuTime.



319
320
321
322
323
# File 'lib/active_support/testing/performance.rb', line 319

def initialize(*args)
  # FIXME: yeah my CPU is 2.33 GHz
  RubyProf.cpu_frequency = 2.33e9
  super
end

Instance Method Details

#measureObject



325
326
327
# File 'lib/active_support/testing/performance.rb', line 325

def measure
  RubyProf.measure_cpu_time
end