method

find_templates

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: ActionView::NullResolver
find_templates(name, prefix, partial, details, locals = []) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/testing/resolvers.rb, line 38
    def find_templates(name, prefix, partial, details, locals = [])
      path = TemplatePath.build(name, prefix, partial)
      handler = ActionView::Template::Handlers::Raw
      [ActionView::Template.new("Template generated by Null Resolver", path.virtual, handler, virtual_path: path.virtual, format: nil, variant: nil, locals: locals)]
    end
Register or log in to add new notes.