aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/render_other_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/render_other_test.rb')
-rw-r--r--actionpack/test/controller/render_other_test.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/actionpack/test/controller/render_other_test.rb b/actionpack/test/controller/render_other_test.rb
new file mode 100644
index 0000000000..af50e11261
--- /dev/null
+++ b/actionpack/test/controller/render_other_test.rb
@@ -0,0 +1,24 @@
+require 'abstract_unit'
+
+
+class RenderOtherTest < ActionController::TestCase
+ class TestController < ActionController::Base
+ def render_simon_says
+ render :simon => "foo"
+ end
+ end
+
+ tests TestController
+
+ def test_using_custom_render_option
+ ActionController.add_renderer :simon do |says, options|
+ self.content_type = Mime::TEXT
+ self.response_body = "Simon says: #{says}"
+ end
+
+ get :render_simon_says
+ assert_equal "Simon says: foo", @response.body
+ ensure
+ ActionController.remove_renderer :simon
+ end
+end