diff --git a/test/ruby/test_keyword.rb b/test/ruby/test_keyword.rb index 4c6c35e6c332de..a214acc2327ee0 100644 --- a/test/ruby/test_keyword.rb +++ b/test/ruby/test_keyword.rb @@ -193,7 +193,7 @@ def test_keyword_splat_nil # cfunc call assert_equal(nil, p(**nil)) - def self.a0; end + def self.a0(&); end assert_equal(nil, a0(**nil)) assert_equal(nil, :a0.to_proc.call(self, **nil)) assert_equal(nil, a0(**nil, &:block)) diff --git a/test/ruby/test_proc.rb b/test/ruby/test_proc.rb index 192955c60ab781..dd05d09a49ba03 100644 --- a/test/ruby/test_proc.rb +++ b/test/ruby/test_proc.rb @@ -217,11 +217,14 @@ def test_block_given_method end def test_block_given_method_to_proc + verbose_bak, $VERBOSE = $VERBOSE, nil bug8341 = '[Bug #8341]' m = method(:m_block_given?).to_proc assert(!m.call, "#{bug8341} without block") assert(m.call {}, "#{bug8341} with block") assert(!m.call, "#{bug8341} without block second") + ensure + $VERBOSE = verbose_bak end def test_block_persist_between_calls