aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/render_xml_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/new_base/render_xml_test.rb')
-rw-r--r--actionpack/test/new_base/render_xml_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionpack/test/new_base/render_xml_test.rb b/actionpack/test/new_base/render_xml_test.rb
new file mode 100644
index 0000000000..e6c40b1533
--- /dev/null
+++ b/actionpack/test/new_base/render_xml_test.rb
@@ -0,0 +1,11 @@
+require File.join(File.expand_path(File.dirname(__FILE__)), "test_helper")
+
+module RenderXml
+
+ # This has no layout and it works
+ class BasicController < ActionController::Base
+ self.view_paths = [ActionView::Template::FixturePath.new(
+ "render_xml/basic/with_render_erb" => "Hello world!"
+ )]
+ end
+end \ No newline at end of file