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