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

* test/test_delegate.rb (test_syscallerror_eq): ignored because the

behaviour is now unspecified.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2008-10-30 14:36:31 +00:00
parent 14b8c2d598
commit 9afa4ed9e8
2 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Thu Oct 30 23:32:17 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* test/test_delegate.rb (test_syscallerror_eq): ignored because the
behaviour is now unspecified.
Thu Oct 30 21:32:15 2008 Yusuke Endoh <mame@tsg.ne.jp>
* array.c (rb_ary_permutation): hide temporal array.

View file

@ -13,10 +13,11 @@ class TestDelegateClass < Test::Unit::TestCase
assert_equal(:m, obj.m, "[ruby-dev:33116]")
end
def test_systemcallerror_eq
e = SystemCallError.new(0)
assert((SimpleDelegator.new(e) == e) == (e == SimpleDelegator.new(e)), "[ruby-dev:34808]")
end
# became pending by [ruby-dev:36950].
# def test_systemcallerror_eq
# e = SystemCallError.new(0)
# assert((SimpleDelegator.new(e) == e) == (e == SimpleDelegator.new(e)), "[ruby-dev:34808]")
# end
class Myclass < DelegateClass(Array);end