class RSpec::Rails::ViewRendering::EmptyTemplatePathSetDecorator

def find_all(*args)

def find_all(*args)
  original_path_set.find_all(*args).collect do |template|
    ::ActionView::Template.new(
      "",
      template.identifier,
      template.handler,
      {
        :virtual_path => template.virtual_path,
        :format => template.formats
      }
    )
  end
end