Methods
B
Instance Public methods
body_to_string(body)
# File actionpack/test/abstract_unit.rb, line 67
def body_to_string(body)
  if body.respond_to?(:each)
    str = ""
    body.each {|s| str << s }
    str
  else
    body
  end
end