Froze rails gems
[depot.git] / vendor / rails / actionpack / lib / action_controller / performance_test.rb
1 require 'action_controller/integration'
2 require 'active_support/testing/performance'
3 require 'active_support/testing/default'
4
5 module ActionController
6 # An integration test that runs a code profiler on your test methods.
7 # Profiling output for combinations of each test method, measurement, and
8 # output format are written to your tmp/performance directory.
9 #
10 # By default, process_time is measured and both flat and graph_html output
11 # formats are written, so you'll have two output files per test method.
12 class PerformanceTest < ActionController::IntegrationTest
13 include ActiveSupport::Testing::Performance
14 include ActiveSupport::Testing::Default
15 end
16 end