aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-06-06 18:01:14 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-06-06 18:01:14 -0700
commitfe9d2ad6e84626d34f1850ef4668a87787d5c6b0 (patch)
treecdf7ec66399be11bc0ba25cb223995def4b8181c /actionpack/test/controller
parent26ec1be24a820327d00e22fb65764a3dc06977e2 (diff)
downloadrails-fe9d2ad6e84626d34f1850ef4668a87787d5c6b0.tar.gz
rails-fe9d2ad6e84626d34f1850ef4668a87787d5c6b0.tar.bz2
rails-fe9d2ad6e84626d34f1850ef4668a87787d5c6b0.zip
Remove some internal dead code that supported content_for
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/capture_test.rb20
1 files changed, 1 insertions, 19 deletions
diff --git a/actionpack/test/controller/capture_test.rb b/actionpack/test/controller/capture_test.rb
index aaafea3920..2604844b84 100644
--- a/actionpack/test/controller/capture_test.rb
+++ b/actionpack/test/controller/capture_test.rb
@@ -11,16 +11,8 @@ class CaptureController < ActionController::Base
def content_for_with_parameter
render :layout => "talk_from_action"
end
-
- def content_for_concatenated
- render :layout => "talk_from_action"
- end
- def erb_content_for
- render :layout => "talk_from_action"
- end
-
- def block_content_for
+ def content_for_concatenated
render :layout => "talk_from_action"
end
@@ -62,21 +54,11 @@ class CaptureTest < Test::Unit::TestCase
assert_equal expected_content_for_output, @response.body
end
- def test_erb_content_for
- get :erb_content_for
- assert_equal expected_content_for_output, @response.body
- end
-
def test_should_set_content_for_with_parameter
get :content_for_with_parameter
assert_equal expected_content_for_output, @response.body
end
- def test_block_content_for
- get :block_content_for
- assert_equal expected_content_for_output, @response.body
- end
-
def test_non_erb_block_content_for
get :non_erb_block_content_for
assert_equal expected_content_for_output, @response.body