aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/test
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-02-04 22:27:45 +0000
committerRick Olson <technoweenie@gmail.com>2007-02-04 22:27:45 +0000
commit92195e68a02715d29ef9d4b3bf66409c014f7174 (patch)
treebe9288b47df99e88a97416fd8707466fd8d549d1 /actionwebservice/test
parent517bf0814e95922d8675b20abc70fa0536044bbe (diff)
downloadrails-92195e68a02715d29ef9d4b3bf66409c014f7174.tar.gz
rails-92195e68a02715d29ef9d4b3bf66409c014f7174.tar.bz2
rails-92195e68a02715d29ef9d4b3bf66409c014f7174.zip
Fix issue with deprecation messing up #template_root= usage. Add #prepend_view_path and #append_view_path to allow modification of a copy of the
superclass' view_paths. [Rick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6125 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/test')
-rw-r--r--actionwebservice/test/scaffolded_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionwebservice/test/scaffolded_controller_test.rb b/actionwebservice/test/scaffolded_controller_test.rb
index 09c40a865e..67e74a95ec 100644
--- a/actionwebservice/test/scaffolded_controller_test.rb
+++ b/actionwebservice/test/scaffolded_controller_test.rb
@@ -5,7 +5,7 @@ ActionController::Routing::Routes.draw do |map|
map.connect ':controller/:action/:id'
end
-ActionController::Base.template_root = '.'
+ActionController::Base.view_load_paths = [ '.' ]
class ScaffoldPerson < ActionWebService::Struct
member :id, :int