module ActionDispatch::TestResponse::DeprecatedHelpers

def has_flash_object?(name=nil)

Does the specified flash object exist?
def has_flash_object?(name=nil)
  ActiveSupport::Deprecation.warn("response.has_flash_object? has been deprecated. Use flash[name] instead", caller)
  !flash[name].nil?
end