Sha256: 4c7621a99aa1aa6200f30bf7a2dfa967825e44a9acb072272a0b8d952c640358

Contents?: true

Size: 713 Bytes

Versions: 1

Compression:

Stored size: 713 Bytes

Contents

require 'active_support/testing/performance'
require 'active_support/testing/default'

if defined?(ActiveSupport::Testing::Performance)
  module ActionDispatch
    # An integration test that runs a code profiler on your test methods.
    # Profiling output for combinations of each test method, measurement, and
    # output format are written to your tmp/performance directory.
    #
    # By default, process_time is measured and both flat and graph_html output
    # formats are written, so you'll have two output files per test method.
    class PerformanceTest < ActionDispatch::IntegrationTest
      include ActiveSupport::Testing::Performance
      include ActiveSupport::Testing::Default
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
actionpack-3.0.0.beta lib/action_dispatch/testing/performance_test.rb