diff options
author | Nicholas Seckar <nseckar@gmail.com> | 2005-08-26 22:37:36 +0000 |
---|---|---|
committer | Nicholas Seckar <nseckar@gmail.com> | 2005-08-26 22:37:36 +0000 |
commit | 68c90ab0194a56493ceaafa16f0b5e6b7e36201f (patch) | |
tree | 7db83af029c7e70c5b4732dc47e9b809e03f2bc1 /actionpack/test/controller | |
parent | 778aeaeffedc468028fc059ab2aa81e7bdfa6de3 (diff) | |
download | rails-68c90ab0194a56493ceaafa16f0b5e6b7e36201f.tar.gz rails-68c90ab0194a56493ceaafa16f0b5e6b7e36201f.tar.bz2 rails-68c90ab0194a56493ceaafa16f0b5e6b7e36201f.zip |
Render refactoring; render error reporting fixes
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2058 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/new_render_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/controller/new_render_test.rb b/actionpack/test/controller/new_render_test.rb index 1e077bb902..a29a6b9cd2 100644 --- a/actionpack/test/controller/new_render_test.rb +++ b/actionpack/test/controller/new_render_test.rb @@ -132,6 +132,7 @@ class NewRenderTestController < ActionController::Base def rendering_with_conflicting_local_vars @name = "David" + def @template.name() nil end render :action => "potential_conflicts" end |