aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_base/render_xml_test.rb
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2009-10-05 11:30:18 -0300
committerEmilio Tagua <miloops@gmail.com>2009-10-05 11:30:18 -0300
commit9a71b6d29d013d8ee3f0d3f408d53e1cf3c9f799 (patch)
tree015eb9de75ccdccf078bfe617002bb7db40fdce7 /actionpack/test/controller/new_base/render_xml_test.rb
parent61c959ab0ddb6eca40eca46296d9156d6eedc631 (diff)
parent49b52cadc2e66c11a025e7719837ae77b3736046 (diff)
downloadrails-9a71b6d29d013d8ee3f0d3f408d53e1cf3c9f799.tar.gz
rails-9a71b6d29d013d8ee3f0d3f408d53e1cf3c9f799.tar.bz2
rails-9a71b6d29d013d8ee3f0d3f408d53e1cf3c9f799.zip
Merge commit 'rails/master'
Diffstat (limited to 'actionpack/test/controller/new_base/render_xml_test.rb')
-rw-r--r--actionpack/test/controller/new_base/render_xml_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionpack/test/controller/new_base/render_xml_test.rb b/actionpack/test/controller/new_base/render_xml_test.rb
new file mode 100644
index 0000000000..d044738a78
--- /dev/null
+++ b/actionpack/test/controller/new_base/render_xml_test.rb
@@ -0,0 +1,11 @@
+require 'abstract_unit'
+
+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