aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-04-29 11:42:27 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-01 17:31:01 -0700
commit1b459916039259383808625d1758a8bc4a4516d9 (patch)
treeda98fddb77975f3e5d767d16abfeef3b23eb735d /actionpack/test/controller
parentb692fceb6aa08791074dd9f4fc3b962094c0b056 (diff)
downloadrails-1b459916039259383808625d1758a8bc4a4516d9.tar.gz
rails-1b459916039259383808625d1758a8bc4a4516d9.tar.bz2
rails-1b459916039259383808625d1758a8bc4a4516d9.zip
Renamed the new_base tests
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/render_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb
index a97e8ac5c1..648e179a15 100644
--- a/actionpack/test/controller/render_test.rb
+++ b/actionpack/test/controller/render_test.rb
@@ -106,6 +106,7 @@ class TestController < ActionController::Base
render :template => '/shared'
end
+ # :ported:
def render_hello_world_from_variable
@person = "david"
render :text => "hello #{@person}"
@@ -123,6 +124,7 @@ class TestController < ActionController::Base
render :action => :hello_world
end
+ # :ported:
def render_text_hello_world
render :text => "hello world"
end