diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-30 14:36:31 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-30 14:36:31 +0000 |
| commit | d55c260bb6f56468adfe7d45cf3c6e013f7461b7 (patch) | |
| tree | aa13d9025b2c91c1f096b41870566bbc3365617e | |
| parent | 303a2fcee4c821933e580c88ba2699e749ffc896 (diff) | |
| download | ruby-d55c260bb6f56468adfe7d45cf3c6e013f7461b7.tar.gz ruby-d55c260bb6f56468adfe7d45cf3c6e013f7461b7.tar.xz ruby-d55c260bb6f56468adfe7d45cf3c6e013f7461b7.zip | |
* test/test_delegate.rb (test_syscallerror_eq): ignored because the
behaviour is now unspecified.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/test_delegate.rb | 9 |
2 files changed, 10 insertions, 4 deletions
@@ -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. diff --git a/test/test_delegate.rb b/test/test_delegate.rb index 0b4c117eb..5fa60dee8 100644 --- a/test/test_delegate.rb +++ b/test/test_delegate.rb @@ -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 |
