method

delete

delete(key = nil)
public

No documentation available.

# File actionpack/lib/action_controller/test_process.rb, line 329
    def delete(key = nil)
      if key.nil?
        ActiveSupport::Deprecation.warn('use clear instead', caller)
        clear
      else
        super(key.to_s)
      end
    end