From 3e7ba35ecde4703f7cdc0dbc5c74aec955bc35f8 Mon Sep 17 00:00:00 2001 From: AntonioTerceiro Date: Tue, 13 Nov 2007 22:45:48 +0000 Subject: [PATCH] ActionItem117: renaming ... --- test/functional/admin_controller_test.rb | 8 ++++---- test/functional/system_controller.rb | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/functional/admin_controller_test.rb b/test/functional/admin_controller_test.rb index 81070bb..e44ac94 100644 --- a/test/functional/admin_controller_test.rb +++ b/test/functional/admin_controller_test.rb @@ -1,12 +1,12 @@ require File.dirname(__FILE__) + '/../test_helper' -require 'environment_admin_controller' +require 'admin_controller' # Re-raise errors caught by the controller. -class EnvironmentAdminController; def rescue_action(e) raise e end; end +class AdminController; def rescue_action(e) raise e end; end -class EnvironmentAdminControllerTest < Test::Unit::TestCase +class AdminControllerTest < Test::Unit::TestCase def setup - @controller = EnvironmentAdminController.new + @controller = AdminController.new @request = ActionController::TestRequest.new @response = ActionController::TestResponse.new end diff --git a/test/functional/system_controller.rb b/test/functional/system_controller.rb index 2d0da2f..d70d96a 100644 --- a/test/functional/system_controller.rb +++ b/test/functional/system_controller.rb @@ -1,12 +1,12 @@ require File.dirname(__FILE__) + '/../test_helper' -require 'system_admin_controller' +require 'system_controller' # Re-raise errors caught by the controller. -class SystemAdminController; def rescue_action(e) raise e end; end +class SystemController; def rescue_action(e) raise e end; end -class SystemAdminControllerTest < Test::Unit::TestCase +class SystemControllerTest < Test::Unit::TestCase def setup - @controller = SystemAdminController.new + @controller = SystemController.new @request = ActionController::TestRequest.new @response = ActionController::TestResponse.new end -- libgit2 0.21.2