class RSpec::Rails::ViewRendering::PathSetDelegatorResolver

with modified source
Delegates find_all to the submitted path set and then returns templates

def find_all(*args)

def find_all(*args)
  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

def initialize(path_set)

def initialize(path_set)
  @path_set = path_set
end