aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/basic_rendering_test.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/actionpack/test/controller/basic_rendering_test.rb b/actionpack/test/controller/basic_rendering_test.rb
deleted file mode 100644
index 2db3cff395..0000000000
--- a/actionpack/test/controller/basic_rendering_test.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require 'abstract_unit'
-
-class BasicRenderingController < ActionController::Base
- def render_hello_world
- render text: "Hello World!"
- end
-end
-
-class BasicRenderingTest < ActionController::TestCase
- tests BasicRenderingController
-
- def test_render_hello_world
- get :render_hello_world
-
- assert_equal "Hello World!", @response.body
- assert_equal "text/plain", @response.content_type
- end
-end
- \ No newline at end of file