aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/templates/controller_test.erb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/generators/templates/controller_test.erb')
-rw-r--r--railties/generators/templates/controller_test.erb17
1 files changed, 0 insertions, 17 deletions
diff --git a/railties/generators/templates/controller_test.erb b/railties/generators/templates/controller_test.erb
deleted file mode 100644
index 5577379c62..0000000000
--- a/railties/generators/templates/controller_test.erb
+++ /dev/null
@@ -1,17 +0,0 @@
-require File.dirname(__FILE__) + '/../test_helper'
-require '<%= file_name %>_controller'
-
-# Re-raise errors caught by the controller.
-class <%= class_name %>Controller; def rescue_action(e) raise e end; end
-
-class <%= class_name %>ControllerTest < Test::Unit::TestCase
- def setup
- @controller = <%= class_name %>Controller.new
- @request, @response = ActionController::TestRequest.new, ActionController::TestResponse.new
- end
-
- # Replace this with your real tests
- def test_truth
- assert true
- end
-end