diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-08-31 14:58:31 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-09-25 09:50:33 +0900 |
commit | 996af2ce086249e904b2ce95ab2fcd1de7d757be (patch) | |
tree | 1b70f747a0eefc32be13f05bdb037275d1e664a1 /test/ruby/test_object.rb | |
parent | 83ff0f74bf69650754cac020bcd4ff9adbba877e (diff) |
Disable deprecation warning by the default [Feature #16345]
And `-w` option turns it on.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3481
Diffstat (limited to 'test/ruby/test_object.rb')
-rw-r--r-- | test/ruby/test_object.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/ruby/test_object.rb b/test/ruby/test_object.rb index 3aa0a1b652..782ae6ac72 100644 --- a/test/ruby/test_object.rb +++ b/test/ruby/test_object.rb @@ -990,13 +990,4 @@ class TestObject < Test::Unit::TestCase end EOS end - - def test_matcher - assert_warning(/deprecated Object#=~ is called on Object/) do - assert_equal(Object.new =~ 42, nil) - end - assert_warning(/deprecated Object#=~ is called on Array/) do - assert_equal([] =~ 42, nil) - end - end end |