aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-01-05 13:43:06 -0800
committerJosé Valim <jose.valim@gmail.com>2012-01-05 13:43:06 -0800
commitb2b2eb3d3f68d94ebeb9bcc0f5ad60f7b2e45bfa (patch)
tree088a35ab8a33642f97320854e008d079e098e0e9 /actionpack
parent39625d153781ffa07121c35dc4bba40410624c9c (diff)
parent1c095f2686a32b3f7ccc68c800c05760a97d8b55 (diff)
downloadrails-b2b2eb3d3f68d94ebeb9bcc0f5ad60f7b2e45bfa.tar.gz
rails-b2b2eb3d3f68d94ebeb9bcc0f5ad60f7b2e45bfa.tar.bz2
rails-b2b2eb3d3f68d94ebeb9bcc0f5ad60f7b2e45bfa.zip
Merge pull request #4334 from lest/remove-obsolete-commented-asserts
remove obsolete commented asserts in TextHelper tests
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/template/text_helper_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/test/template/text_helper_test.rb b/actionpack/test/template/text_helper_test.rb
index 839bf900dc..aa185d9cb0 100644
--- a/actionpack/test/template/text_helper_test.rb
+++ b/actionpack/test/template/text_helper_test.rb
@@ -81,10 +81,6 @@ class TextHelperTest < ActionView::TestCase
end
def test_truncate_multibyte
- # .mb_chars always returns a UTF-8 String.
- # 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", :length => 10)
-
assert_equal "\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254 ...".force_encoding('UTF-8'),
truncate("\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254 \354\225\204\353\235\274\353\246\254\354\230\244".force_encoding('UTF-8'), :length => 10)
end
@@ -231,8 +227,6 @@ class TextHelperTest < ActionView::TestCase
def test_excerpt_with_utf8
assert_equal("...\357\254\203ciency could not be...".force_encoding('UTF-8'), excerpt("That's why e\357\254\203ciency could not be helped".force_encoding('UTF-8'), 'could', 8))
- # .mb_chars always returns UTF-8, even in 1.9. This is not great, but it's how it works. Let's work this out.
- # assert_equal("...\203ciency could not be...", excerpt("That's why e\357\254\203ciency could not be helped".force_encoding("BINARY"), 'could', 8))
end
def test_word_wrap