aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-06-25 17:02:04 +0100
committerPratik Naik <pratiknaik@gmail.com>2009-06-25 17:02:04 +0100
commit92b229e1251d7d3578c3f73e8185972354e76436 (patch)
tree80fd919a35ab07e5f27b6d4ae8ac0bb9d9e4aaa7 /actionpack/lib/action_controller
parent3aad4d7fbec6b0881733d3a9b2aff756f775ad35 (diff)
downloadrails-92b229e1251d7d3578c3f73e8185972354e76436.tar.gz
rails-92b229e1251d7d3578c3f73e8185972354e76436.tar.bz2
rails-92b229e1251d7d3578c3f73e8185972354e76436.zip
Make performance tests work again
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/testing/performance.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/actionpack/lib/action_controller/testing/performance.rb b/actionpack/lib/action_controller/testing/performance.rb
deleted file mode 100644
index d88180087d..0000000000
--- a/actionpack/lib/action_controller/testing/performance.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-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