Delegates #find_all to the submitted path set and then returns templates with modified source
# File lib/rspec/rails/view_rendering.rb, line 66 def initialize(original_path_set) @original_path_set = original_path_set end
@api private
# File lib/rspec/rails/view_rendering.rb, line 71 def find_all(*args) original_path_set.find_all(*args).collect do |template| ::ActionView::Template.new( "", template.identifier, EmptyTemplateHandler, { :virtual_path => template.virtual_path, :format => template.formats } ) end end