Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Build fix for ruby187-p358
  • Loading branch information
arunagw committed Feb 25, 2012
1 parent 6dbf6f3 commit 99fa8e5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions actionpack/test/controller/integration_test.rb
Expand Up @@ -296,8 +296,13 @@ def test_post
self.cookies['cookie_1'] = "sugar"
self.cookies['cookie_2'] = "oatmeal"
get '/cookie_monster'
assert_equal "cookie_1=; path=/\ncookie_3=chocolate; path=/", headers["Set-Cookie"]
assert_equal({"cookie_1"=>"", "cookie_2"=>"oatmeal", "cookie_3"=>"chocolate"}, cookies.to_hash)
assert headers["Set-Cookie"].include?"path=/"
assert headers["Set-Cookie"].include?"cookie_3=chocolate;"
assert headers["Set-Cookie"].include?"cookie_1=; path=/"

assert cookies.to_hash["cookie_1"], ""
assert cookies.to_hash["cookie_2"], "oatmeal"
assert cookies.to_hash["cookie_3"], "chocolate"
end
end

Expand Down

0 comments on commit 99fa8e5

Please sign in to comment.