diff --git a/test/functional/system_controller.rb b/test/functional/system_controller.rb deleted file mode 100644 index d70d96a..0000000 --- a/test/functional/system_controller.rb +++ /dev/null @@ -1,18 +0,0 @@ -require File.dirname(__FILE__) + '/../test_helper' -require 'system_controller' - -# Re-raise errors caught by the controller. -class SystemController; def rescue_action(e) raise e end; end - -class SystemControllerTest < Test::Unit::TestCase - def setup - @controller = SystemController.new - @request = ActionController::TestRequest.new - @response = ActionController::TestResponse.new - end - - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/functional/system_controller_test.rb b/test/functional/system_controller_test.rb new file mode 100644 index 0000000..d70d96a --- /dev/null +++ b/test/functional/system_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'system_controller' + +# Re-raise errors caught by the controller. +class SystemController; def rescue_action(e) raise e end; end + +class SystemControllerTest < Test::Unit::TestCase + def setup + @controller = SystemController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # Replace this with your real tests. + def test_truth + assert true + end +end -- libgit2 0.21.2