From 7aa8a786740fd84bd718b0c055f190b25a8f0277 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 17 Dec 2019 17:16:12 +0900 Subject: Manage deprecation warnings about keyword argument --- test/ruby/test_exception.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/ruby/test_exception.rb') diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb index 56cd19d0a2..c7cfe816b0 100644 --- a/test/ruby/test_exception.rb +++ b/test/ruby/test_exception.rb @@ -1160,6 +1160,7 @@ $stderr = $stdout; raise "\x82\xa0"') do |outs, errs, status| def capture_warning_warn verbose = $VERBOSE + deprecated = Warning[:deprecated] warning = [] ::Warning.class_eval do @@ -1172,11 +1173,13 @@ $stderr = $stdout; raise "\x82\xa0"') do |outs, errs, status| end $VERBOSE = true + Warning[:deprecated] = true yield return warning ensure $VERBOSE = verbose + Warning[:deprecated] = deprecated ::Warning.class_eval do remove_method :warn -- cgit v1.2.3