Methods
- T
Instance Public methods
test_calling_delete_removes_item_and_returns_its_value()
Link
# File actionpack/test/dispatch/session/test_session_test.rb, line 17 def test_calling_delete_removes_item_and_returns_its_value session = ActionController::TestSession.new session[:key] = 'value' assert_equal('value', session[:key]) assert_equal('value', session.delete(:key)) assert_nil(session[:key]) end
test_calling_update_with_params_passes_to_attributes()
Link
test_clear_emptys_session()
Link
test_ctor_allows_setting()
Link