# File lib/action_dispatch/http/response.rb, line 87
    def respond_to?(method)
      if method.to_sym == :to_path
        @body.respond_to?(:to_path)
      else
        super
      end
    end