diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-08-20 13:37:18 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-08-20 13:37:18 -0500 |
commit | 47cd8b81cc19345aa68323755c78ab03f8176590 (patch) | |
tree | 0f51b8a4b010b720e12aec27f5b83a75ba33b09e /actionpack/test/controller | |
parent | a74dbe6c528a46f11e709386c282ead8049840ba (diff) | |
download | rails-47cd8b81cc19345aa68323755c78ab03f8176590.tar.gz rails-47cd8b81cc19345aa68323755c78ab03f8176590.tar.bz2 rails-47cd8b81cc19345aa68323755c78ab03f8176590.zip |
Switched integration test runner to use Rack processor instead of CGI
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index 47ff2dbbd3..c986941140 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -327,7 +327,7 @@ class IntegrationProcessTest < ActionController::IntegrationTest assert_equal ["410 Gone"], headers["status"] assert_response 410 assert_response :gone - assert_equal nil, response.headers["Set-Cookie"] + assert_equal ["cookie_1=; path=/", "cookie_3=chocolate; path=/"], response.headers["Set-Cookie"] assert_equal ["cookie_1=; path=/", "cookie_3=chocolate; path=/"], headers['set-cookie'] assert_equal [ CGI::Cookie::new("name" => "cookie_1", "value" => ""), |