diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-22 00:23:47 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-22 00:23:47 -0700 |
commit | e9ed44af88fcffe75e1658e963e6dfb26b31edbe (patch) | |
tree | 1a3c641f02b9b0b0bda0c85574f45c052ec62a03 /actionpack/test/controller/session/test_session_test.rb | |
parent | 5afc2abee66cda565f2cb890fe11c3d8e918d882 (diff) | |
parent | 6ee8329af6cd0c62945f216fae80fdd1679d477d (diff) | |
download | rails-e9ed44af88fcffe75e1658e963e6dfb26b31edbe.tar.gz rails-e9ed44af88fcffe75e1658e963e6dfb26b31edbe.tar.bz2 rails-e9ed44af88fcffe75e1658e963e6dfb26b31edbe.zip |
Merge branch 'master' into cherry
Diffstat (limited to 'actionpack/test/controller/session/test_session_test.rb')
-rw-r--r-- | actionpack/test/controller/session/test_session_test.rb | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/actionpack/test/controller/session/test_session_test.rb b/actionpack/test/controller/session/test_session_test.rb deleted file mode 100644 index de6539e1cc..0000000000 --- a/actionpack/test/controller/session/test_session_test.rb +++ /dev/null @@ -1,58 +0,0 @@ -require 'abstract_unit' -require 'stringio' - -class ActionController::TestSessionTest < ActiveSupport::TestCase - - def test_calling_delete_without_parameters_raises_deprecation_warning_and_calls_to_clear_test_session - assert_deprecated(/use clear instead/){ ActionController::TestSession.new.delete } - end - - def test_calling_update_without_parameters_raises_deprecation_warning_and_calls_to_clear_test_session - assert_deprecated(/use replace instead/){ ActionController::TestSession.new.update } - end - - def test_calling_close_raises_deprecation_warning - assert_deprecated(/sessions should no longer be closed/){ ActionController::TestSession.new.close } - end - - def test_defaults - session = ActionController::TestSession.new - assert_equal({}, session.data) - assert_equal('', session.session_id) - end - - def test_ctor_allows_setting - session = ActionController::TestSession.new({:one => 'one', :two => 'two'}) - assert_equal('one', session[:one]) - assert_equal('two', session[:two]) - end - - def test_setting_session_item_sets_item - session = ActionController::TestSession.new - session[:key] = 'value' - assert_equal('value', session[:key]) - end - - def test_calling_delete_removes_item - session = ActionController::TestSession.new - session[:key] = 'value' - assert_equal('value', session[:key]) - session.delete(:key) - assert_nil(session[:key]) - end - - def test_calling_update_with_params_passes_to_attributes - session = ActionController::TestSession.new() - session.update('key' => 'value') - assert_equal('value', session[:key]) - end - - def test_clear_emptys_session - params = {:one => 'one', :two => 'two'} - session = ActionController::TestSession.new({:one => 'one', :two => 'two'}) - session.clear - assert_nil(session[:one]) - assert_nil(session[:two]) - end - -end
\ No newline at end of file |