module ActionDispatch::TestResponse::DeprecatedHelpers

def has_flash?

Do we have a flash?
def has_flash?
  ActiveSupport::Deprecation.warn("response.has_flash? has been deprecated. Use flash.any? instead", caller)
  !flash.empty?
end