aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/session
diff options
context:
space:
mode:
authorJeffrey Hardy <packagethief@gmail.com>2009-10-14 00:26:53 -0400
committerJeremy Kemper <jeremy@bitsweat.net>2009-10-14 11:50:51 -0700
commita8dc9fd27b845193fd209a249e084f993a10c19d (patch)
treebf82adb1476ae733e8a0b3a028229a6fb69cc127 /actionpack/test/dispatch/session
parentff8be66f249d49e82c8e1d04cb8cfbbc128deabe (diff)
downloadrails-a8dc9fd27b845193fd209a249e084f993a10c19d.tar.gz
rails-a8dc9fd27b845193fd209a249e084f993a10c19d.tar.bz2
rails-a8dc9fd27b845193fd209a249e084f993a10c19d.zip
CookieJar#delete should return the key's value, consistent with a Hash
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'actionpack/test/dispatch/session')
-rw-r--r--actionpack/test/dispatch/session/test_session_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/session/test_session_test.rb b/actionpack/test/dispatch/session/test_session_test.rb
index 0ff93f1c5d..c8dc4ab461 100644
--- a/actionpack/test/dispatch/session/test_session_test.rb
+++ b/actionpack/test/dispatch/session/test_session_test.rb
@@ -26,11 +26,11 @@ class ActionController::TestSessionTest < ActiveSupport::TestCase
assert_equal('value', session[:key])
end
- def test_calling_delete_removes_item
+ def test_calling_delete_removes_item_and_returns_its_value
session = ActionController::TestSession.new
session[:key] = 'value'
assert_equal('value', session[:key])
- session.delete(:key)
+ assert_equal('value', session.delete(:key))
assert_nil(session[:key])
end