class RSpec::Rails::ViewRendering::EmptyTemplateResolver

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

@private

Private Instance Methods

find_templates(*args) click to toggle source
Calls superclass method
# File lib/rspec/rails/view_rendering.rb, line 49
def find_templates(*args)
  super.map do |template|
    ::ActionView::Template.new(
      "",
      template.identifier,
      EmptyTemplateHandler,
      :virtual_path => template.virtual_path,
      :format => template.formats
    )
  end
end