method
delete
v2.3.8 -
Show latest stable
- Class:
ActionController::TestSession
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