module ActionDispatch::TestResponse::DeprecatedHelpers

def has_flash_with_contents?

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