diff options
author | Krekoten' Marjan <krekoten@gmail.com> | 2010-10-18 22:00:48 +0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-10-18 17:34:22 -0200 |
commit | a75d21df06d0b7af21921aad38b021056aa15e63 (patch) | |
tree | b05f92c4606f82f2a3bd3a490f413f09323a3495 /actionpack | |
parent | 608bf7b72c227a3030db9418217d9a77325c2b21 (diff) | |
download | rails-a75d21df06d0b7af21921aad38b021056aa15e63.tar.gz rails-a75d21df06d0b7af21921aad38b021056aa15e63.tar.bz2 rails-a75d21df06d0b7af21921aad38b021056aa15e63.zip |
Fix status initialization when custom status provided
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/http/response.rb | 4 | ||||
-rw-r--r-- | actionpack/test/dispatch/response_test.rb | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/http/response.rb b/actionpack/lib/action_dispatch/http/response.rb index 72871e328a..8e03a7879f 100644 --- a/actionpack/lib/action_dispatch/http/response.rb +++ b/actionpack/lib/action_dispatch/http/response.rb @@ -44,8 +44,8 @@ module ActionDispatch # :nodoc: @block = nil @length = 0 - @status, @header = status, header - self.body = body + @header = header + self.body, self.status = body, status @cookie = [] @sending_file = false diff --git a/actionpack/test/dispatch/response_test.rb b/actionpack/test/dispatch/response_test.rb index be6398fead..ab26d1a645 100644 --- a/actionpack/test/dispatch/response_test.rb +++ b/actionpack/test/dispatch/response_test.rb @@ -18,6 +18,10 @@ class ResponseTest < ActiveSupport::TestCase body.each { |part| parts << part } assert_equal ["Hello, World!"], parts end + + test "status handled properly in initialize" do + assert_equal 200, ActionDispatch::Response.new('200 OK').status + end test "utf8 output" do @response.body = [1090, 1077, 1089, 1090].pack("U*") |