aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/action_pack_assertions_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/action_pack_assertions_test.rb')
-rw-r--r--actionpack/test/controller/action_pack_assertions_test.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/actionpack/test/controller/action_pack_assertions_test.rb b/actionpack/test/controller/action_pack_assertions_test.rb
index ccde516f31..4ecf6b6b5b 100644
--- a/actionpack/test/controller/action_pack_assertions_test.rb
+++ b/actionpack/test/controller/action_pack_assertions_test.rb
@@ -55,6 +55,10 @@ class ActionPackAssertionsController < ActionController::Base
render_text "Mr. #{@params["name"]}"
end
+ def render_url
+ render_text "<div>#{url_for(:action => 'flash_me', :only_path => true)}</div>"
+ end
+
# puts something in the session
def session_stuffing
session['xmas'] = 'turkey'
@@ -97,6 +101,11 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase
# -- assertion-based testing ------------------------------------------------
+ def test_assert_tag_and_url_for
+ get :render_url
+ assert_tag :content => "/action_pack_assertions/flash_me"
+ end
+
# test the session assertion to make sure something is there.
def test_assert_session_has
process :session_stuffing
@@ -359,7 +368,7 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase
assert_redirected_to :action => "flash_me"
follow_redirect
- assert_equal 1, @request.parameters["id"]
+ assert_equal 1, @request.parameters["id"].to_i
assert "Inconceivable!", @response.body
end