Methods
R
V
Instance Public methods
render_erb(string)
# File actionview/test/abstract_unit.rb, line 76
def render_erb(string)
  @virtual_path = nil

  template = ActionView::Template.new(
    string.strip,
    "test template",
    ActionView::Template::Handlers::ERB,
    {})

  template.render(self, {}).strip
end
view()
# File actionview/test/abstract_unit.rb, line 68
def view
  @view ||= begin
    path = ActionView::FileSystemResolver.new(FIXTURE_LOAD_PATH)
    view_paths = ActionView::PathSet.new([path])
    ActionView::Base.new(view_paths)
  end
end