aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/performance_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-06-13 00:21:03 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-06-14 02:04:38 -0700
commiteab71208db1afead6803501c8d51d77625e5ad6e (patch)
tree194e4911a90e5edf7af4c3c2990d6c0ad3645791 /actionpack/lib/action_controller/performance_test.rb
parentba0f38f89e8473490270957849d7d5b06f6ee65b (diff)
downloadrails-eab71208db1afead6803501c8d51d77625e5ad6e.tar.gz
rails-eab71208db1afead6803501c8d51d77625e5ad6e.tar.bz2
rails-eab71208db1afead6803501c8d51d77625e5ad6e.zip
Performance: integration test benchmarking and profiling. [Jeremy Kemper]
Diffstat (limited to 'actionpack/lib/action_controller/performance_test.rb')
-rw-r--r--actionpack/lib/action_controller/performance_test.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/performance_test.rb b/actionpack/lib/action_controller/performance_test.rb
new file mode 100644
index 0000000000..85543fffae
--- /dev/null
+++ b/actionpack/lib/action_controller/performance_test.rb
@@ -0,0 +1,16 @@
+require 'action_controller/integration'
+require 'active_support/testing/performance'
+require 'active_support/testing/default'
+
+module ActionController
+ # 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 < ActionController::IntegrationTest
+ include ActiveSupport::Testing::Performance
+ include ActiveSupport::Testing::Default
+ end
+end