# File lib/spec/rails/extensions/action_controller/base.rb, line 4
      def set_view_path(path)
        [:append_view_path, :view_paths=, :template_root=].each do |method|
          if respond_to?(method)
            return send(method, path)
          end
        end
      end