module ActionDispatch::Assertions::ResponseAssertions

def response_body_if_short

def response_body_if_short
  return "" if @response.body.size > 500
  "\nResponse body: #{@response.body}"
end