method
update
rails latest stable - Class:
ActionController::TestSession
update(hash = nil)public
No documentation available.
# File actionpack/lib/action_controller/test_process.rb, line 320
def update(hash = nil)
if hash.nil?
ActiveSupport::Deprecation.warn('use replace instead', caller)
replace({})
else
super(hash)
end
end