Source: show | on GitHub
# 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