diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-08-27 14:16:30 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-08-27 14:16:30 +0200 |
commit | 6236cc46b9dccf85c84db0645bdca30bed583d58 (patch) | |
tree | 34cf16c30bbea925fbc790a0da431c9a064e434b /actionpack/test | |
parent | 8748a3ee4c58b0fed8d9519e86c6ba60cdf18d55 (diff) | |
parent | 0258ef33a5b89a25ddc5b091ba03142578a6777b (diff) | |
download | rails-6236cc46b9dccf85c84db0645bdca30bed583d58.tar.gz rails-6236cc46b9dccf85c84db0645bdca30bed583d58.tar.bz2 rails-6236cc46b9dccf85c84db0645bdca30bed583d58.zip |
Merge pull request #21384 from jeremyf/updating-ActionController-TestSession-to-behave-as-a-hash-with-indifferent
Updating TestSession to access with indifference
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/session/test_session_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/session/test_session_test.rb b/actionpack/test/dispatch/session/test_session_test.rb index 59c030176b..3e61d123e3 100644 --- a/actionpack/test/dispatch/session/test_session_test.rb +++ b/actionpack/test/dispatch/session/test_session_test.rb @@ -46,6 +46,16 @@ class ActionController::TestSessionTest < ActiveSupport::TestCase assert_equal('2', session.fetch(:two, '2')) end + def test_fetch_on_symbol_returns_value + session = ActionController::TestSession.new(one: '1') + assert_equal('1', session.fetch(:one)) + end + + def test_fetch_on_string_returns_value + session = ActionController::TestSession.new(one: '1') + assert_equal('1', session.fetch('one')) + end + def test_fetch_returns_block_value session = ActionController::TestSession.new(one: '1') assert_equal(2, session.fetch('2') { |key| key.to_i }) |