aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/render_xml_test.rb
blob: 86a7d9c8a52c19b87b1857e89cb1fcccf518358f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
require 'abstract_unit2'

module RenderXml
  
  # This has no layout and it works
  class BasicController < ActionController::Base
    self.view_paths = [ActionView::FixtureResolver.new(
      "render_xml/basic/with_render_erb" => "Hello world!"
    )]
  end
end