module FactoryGirlInstruments

Constants

Benchmark
VERSION

Public Class Methods

benchmark_report(options = {}) click to toggle source
# File lib/factory_girl_instruments.rb, line 14
def self.benchmark_report(options = {})
  options = { :progress => true }.merge(options)

  FactoryGirl.benchmark_all(options).each do |benchmark|
    puts benchmark
  end
end