aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2006-10-12 21:13:05 +0000
committerMichael Koziarski <michael@koziarski.com>2006-10-12 21:13:05 +0000
commit41c362352433f265a95c00d8e7b5c1f1299e9011 (patch)
treeef84b72d406c22c8764d19a5ee7db52481bc18b1 /actionpack/test/template
parent48cef84150d2c5f7be351787d0584626f5b8155a (diff)
downloadrails-41c362352433f265a95c00d8e7b5c1f1299e9011.tar.gz
rails-41c362352433f265a95c00d8e7b5c1f1299e9011.tar.bz2
rails-41c362352433f265a95c00d8e7b5c1f1299e9011.zip
Use String#chars in TextHelper::excerpt. Closes #6386 [Manfred Stienstra]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5288 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/text_helper_test.rb43
1 files changed, 18 insertions, 25 deletions
diff --git a/actionpack/test/template/text_helper_test.rb b/actionpack/test/template/text_helper_test.rb
index a3962095ae..dd127cde66 100644
--- a/actionpack/test/template/text_helper_test.rb
+++ b/actionpack/test/template/text_helper_test.rb
@@ -24,31 +24,16 @@ class TextHelperTest < Test::Unit::TestCase
assert_equal "Hello Wor...", truncate("Hello World!!", 12)
end
- def test_truncate_multibyte_without_kcode
- result = execute_in_sandbox(<<-'CODE')
- require File.dirname(__FILE__) + '/../../activesupport/lib/active_support/core_ext/kernel'
- require "#{File.dirname(__FILE__)}/../lib/action_view/helpers/text_helper"
- include ActionView::Helpers::TextHelper
- truncate("\354\225\210\353\205\225\355\225\230\354\204\270\354\232\224", 10)
- CODE
-
- assert_equal "\354\225\210\353\205\225\355...", result
- end
-
- def test_truncate_multibyte_with_kcode
- result = execute_in_sandbox(<<-'CODE')
- $KCODE = "u"
- require 'jcode'
-
- require File.dirname(__FILE__) + '/../../activesupport/lib/active_support/core_ext/kernel'
- require "#{File.dirname(__FILE__)}/../lib/action_view/helpers/text_helper"
- include ActionView::Helpers::TextHelper
- truncate("\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254\353\236 \354\225\204\353\235\274\353\246\254\354\230\244", 10)
- CODE
-
- assert_equal "\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254\353\236 ...", result
+ def test_truncate_multibyte
+ with_kcode 'none' do
+ assert_equal "\354\225\210\353\205\225\355...", truncate("\354\225\210\353\205\225\355\225\230\354\204\270\354\232\224", 10)
+ end
+ with_kcode 'u' do
+ assert_equal "\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254\353\236 ...",
+ truncate("\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254\353\236 \354\225\204\353\235\274\353\246\254\354\230\244", 10)
+ end
end
-
+
def test_strip_links
assert_equal "on my mind", strip_links("<a href='almost'>on my mind</a>")
assert_equal "on my mind", strip_links("<A href='almost'>on my mind</A>")
@@ -105,7 +90,15 @@ class TextHelperTest < Test::Unit::TestCase
assert_equal('...is a beautiful! morn...', excerpt('This is a beautiful! morning', 'beautiful', 5))
assert_equal('...is a beautiful? morn...', excerpt('This is a beautiful? morning', 'beautiful', 5))
end
-
+
+ def test_excerpt_with_utf8
+ with_kcode('u') do
+ assert_equal("...fficiency could not be h...", excerpt("That's why efficiency could not be helped", 'could', 8))
+ end
+ with_kcode('none') do
+ assert_equal("...\203ciency could not be h...", excerpt("That's why efficiency could not be helped", 'could', 8))
+ end
+ end
def test_word_wrap
assert_equal("my very very\nvery long\nstring", word_wrap("my very very very long string", 15))