aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-09 03:12:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-09 03:12:25 +0000
commit45fa4a4b634515ff9c7f1e8008990f0e7e8c46dc (patch)
treebad6a328f65bf6e7d1e7c634f7d893dab7c7d262 /test
parent0076f3b3f825b39e4629b29c6525864f68d9a855 (diff)
downloadruby-45fa4a4b634515ff9c7f1e8008990f0e7e8c46dc.tar.gz
* string.c (tr_find): returns true if no characters to be removed is
specified. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14151 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_m17n.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_m17n.rb b/test/ruby/test_m17n.rb
index 542c3d2b00..28f636fc65 100644
--- a/test/ruby/test_m17n.rb
+++ b/test/ruby/test_m17n.rb
@@ -489,4 +489,9 @@ class TestM17N < Test::Unit::TestCase
assert_equal(s.tr("A", "B"), s)
assert_equal(s.tr_s("A", "B"), s)
end
+
+ def test_squeeze
+ s = "\xa3\xb0\xa3\xb1\xa3\xb1\xa3\xb3\xa3\xb4".force_encoding("euc-jp")
+ assert_equal("\xa3\xb0\xa3\xb1\xa3\xb3\xa3\xb4".force_encoding("euc-jp"), s.squeeze)
+ end
end