diff options
author | Scott Barron <scott@elitists.net> | 2005-12-30 18:45:04 +0000 |
---|---|---|
committer | Scott Barron <scott@elitists.net> | 2005-12-30 18:45:04 +0000 |
commit | 63c822afb22ea17cffd55a3d1c3472405e977be5 (patch) | |
tree | 6f33746a7db15b80d803b642a440b2b0e573e996 /actionpack/test | |
parent | b5ba377b784c58db7b7fb878862a550ae57beb95 (diff) | |
download | rails-63c822afb22ea17cffd55a3d1c3472405e977be5.tar.gz rails-63c822afb22ea17cffd55a3d1c3472405e977be5.tar.bz2 rails-63c822afb22ea17cffd55a3d1c3472405e977be5.zip |
Make auto_link handle nil by returning quickly if blank?
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3359 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/template/text_helper_test.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/test/template/text_helper_test.rb b/actionpack/test/template/text_helper_test.rb index 37c81e12a6..b323568068 100644 --- a/actionpack/test/template/text_helper_test.rb +++ b/actionpack/test/template/text_helper_test.rb @@ -155,6 +155,8 @@ class TextHelperTest < Test::Unit::TestCase assert_equal %(<p>Link #{link4_result}</p>), auto_link("<p>Link #{link4_raw}</p>") assert_equal %(<p>#{link4_result} Link</p>), auto_link("<p>#{link4_raw} Link</p>") assert_equal %(<p>#{link5_result} Link</p>), auto_link("<p>#{link5_raw} Link</p>") + assert_equal '', auto_link(nil) + assert_equal '', auto_link('') end def test_auto_link_at_eol |