From f1b12b62f48257054a416269f3bf465fb4a8d6e7 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Sat, 8 Sep 2007 03:12:03 +0000 Subject: Fix layout overriding response status. Closes #9476. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7418 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/layout_test.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'actionpack/test/controller') diff --git a/actionpack/test/controller/layout_test.rb b/actionpack/test/controller/layout_test.rb index 1f8baca49a..cad5720742 100644 --- a/actionpack/test/controller/layout_test.rb +++ b/actionpack/test/controller/layout_test.rb @@ -200,3 +200,22 @@ class LayoutExceptionRaised < Test::Unit::TestCase assert_equal ActionController::MissingTemplate, @response.template.exception.class end end + +class LayoutStatusIsRendered < LayoutTest + def hello + render :status => 401 + end +end + +class LayoutStatusIsRenderedTest < Test::Unit::TestCase + def setup + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + def test_layout_status_is_rendered + @controller = LayoutStatusIsRendered.new + get :hello + assert_response 401 + end +end -- cgit v1.2.3