From d629684bb91e7ea64508cd24629a44d41ff328dd Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 24 May 2009 23:06:57 +0000 Subject: * string.c (rb_str_rpartition): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23564 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_string.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/ruby/test_string.rb') diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index 4a784b18f1..1d65c84c1c 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -1712,6 +1712,8 @@ class TestString < Test::Unit::TestCase assert_equal(%w(hel l o), "hello".rpartition(/l/)) assert_equal(%w(hel l o), "hello".rpartition("l")) assert_raise(TypeError) { "hello".rpartition(1) } + def (hyphen = Object.new).to_str; "-"; end + assert_equal(%w(foo - bar), "foo-bar".rpartition(hyphen), '[ruby-core:23540]') end def test_setter -- cgit v1.2.3