From edfb81d668f93eac419070a38d8fed9174f4509d Mon Sep 17 00:00:00 2001 From: Prem Sichanugrist Date: Tue, 12 Jul 2011 19:41:46 -0400 Subject: [PATCH] Fix a wrong assertion on url_helper_test, and refactor `html_safe` test to be in its method --- actionpack/test/template/url_helper_test.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/actionpack/test/template/url_helper_test.rb b/actionpack/test/template/url_helper_test.rb index a70c02a429e2a..78245c1f956cc 100644 --- a/actionpack/test/template/url_helper_test.rb +++ b/actionpack/test/template/url_helper_test.rb @@ -386,13 +386,11 @@ def test_mail_to def test_mail_to_with_javascript snippet = mail_to("me@domain.com", "My email", :encode => "javascript") assert_dom_equal "", snippet - assert snippet.html_safe? end def test_mail_to_with_javascript_unicode snippet = mail_to("unicode@example.com", "Ășnicode", :encode => "javascript") assert_dom_equal "", snippet - assert snippet.html_safe end def test_mail_with_options @@ -421,6 +419,12 @@ def test_mail_to_with_replace_options assert_dom_equal "", mail_to("me@domain.com", nil, :encode => "javascript", :replace_at => "(at)", :replace_dot => "(dot)") end + def test_mail_to_returns_html_safe_string + assert mail_to("david@loudthinking.com").html_safe? + assert mail_to("me@domain.com", "My email", :encode => "javascript").html_safe? + assert mail_to("me@domain.com", "My email", :encode => "hex").html_safe? + end + # TODO: button_to looks at this ... why? def protect_against_forgery? false