Flowdock
method

update

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionController::TestSession
update(hash = nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.