From 2ab42dcc3ed0d37e64da10063b4162bd8e8cb4bf Mon Sep 17 00:00:00 2001 From: Daniel Stutzman Date: Sat, 7 May 2011 16:35:56 -0600 Subject: New test: setting response_body to a Proc should be supported. --- .../test/dispatch/response_body_is_proc_test.rb | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 actionpack/test/dispatch/response_body_is_proc_test.rb (limited to 'actionpack') diff --git a/actionpack/test/dispatch/response_body_is_proc_test.rb b/actionpack/test/dispatch/response_body_is_proc_test.rb new file mode 100644 index 0000000000..86d788b845 --- /dev/null +++ b/actionpack/test/dispatch/response_body_is_proc_test.rb @@ -0,0 +1,38 @@ +require 'abstract_unit' + +class ResponseBodyIsProcTest < ActionDispatch::IntegrationTest + class TestController < ActionController::Base + def test + request.session_options[:renew] = true + self.response_body = proc { |response, output| + puts caller + output.write 'Hello' + } + end + + def rescue_action(e) raise end + end + + def test_simple_get + with_test_route_set do + get '/test' + assert_response :success + assert_equal 'Hello', response.body + end + end + + private + def with_test_route_set(options = {}) + with_routing do |set| + set.draw do + match ':action', :to => ::ResponseBodyIsProcTest::TestController + end + + @app = self.class.build_app(set) do |middleware| + middleware.delete "ActionDispatch::ShowExceptions" + end + + yield + end + end +end -- cgit v1.2.3