From 422071996c3cae9a25eef9a66e6b20892436e21b Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 24 Feb 2009 17:28:56 +0000 Subject: * string.c (rb_str_chomp_bang): coderange may change. [ruby-core:22414] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_string.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index a995087bb..bf3861e74 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -339,6 +339,8 @@ class TestString < Test::Unit::TestCase assert_equal(S("hello"), S("hello").chomp) assert_equal(S("hello"), S("hello!").chomp) $/ = save + + assert_equal(S("a").hash, S("a\u0101").chomp(S("\u0101")).hash, '[ruby-core:22414]') end def test_chomp! @@ -393,6 +395,8 @@ class TestString < Test::Unit::TestCase s = "foo\r" s.chomp!("") assert_equal("foo\r", s) + + assert_equal(S("a").hash, S("a\u0101").chomp!(S("\u0101")).hash, '[ruby-core:22414]') end def test_chop -- cgit