1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_case.rb: merged r25658 from ruby_1_8.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25665 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2009-11-05 22:48:53 +00:00
parent 401ce469be
commit e83d7c4eca
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Fri Nov 6 07:29:07 2009 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* test/ruby/test_case.rb: merged r25658 from ruby_1_8.
Thu Nov 5 12:27:07 2009 NARUSE, Yui <naruse@ruby-lang.org>
* gem_prelude.rb (Gem.user_home): force_encoding(

View file

@ -46,6 +46,13 @@ class TestCase < Test::Unit::TestCase
else
assert(false)
end
case "+"
when *%w/. +/
assert(true)
else
assert(false)
end
end
def test_deoptimization