aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/benchmark_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/benchmark_test.rb')
-rw-r--r--actionpack/test/controller/benchmark_test.rb19
1 files changed, 8 insertions, 11 deletions
diff --git a/actionpack/test/controller/benchmark_test.rb b/actionpack/test/controller/benchmark_test.rb
index 7e19376101..f346e575e3 100644
--- a/actionpack/test/controller/benchmark_test.rb
+++ b/actionpack/test/controller/benchmark_test.rb
@@ -1,17 +1,14 @@
require File.dirname(__FILE__) + '/../abstract_unit'
require 'test/unit'
-# Provide a static version of the Controllers module instead of the auto-loading version.
-# We don't want these tests to fail when dependencies are to blame.
-module Controllers
- class BenchmarkedController < ActionController::Base
- def public_action
- render :nothing => true
- end
+# Provide some static controllers.
+class BenchmarkedController < ActionController::Base
+ def public_action
+ render :nothing => true
+ end
- def rescue_action(e)
- raise e
- end
+ def rescue_action(e)
+ raise e
end
end
@@ -22,7 +19,7 @@ class BenchmarkTest < Test::Unit::TestCase
end
def setup
- @controller = Controllers::BenchmarkedController.new
+ @controller = BenchmarkedController.new
# benchmark doesn't do anything unless a logger is set
@controller.logger = MockLogger.new
@request, @response = ActionController::TestRequest.new, ActionController::TestResponse.new