From ca7835bec6714f0704a32a25d2c23e465f3c10b2 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 23 Oct 2014 12:42:57 +0000 Subject: hash.c: rb_hash_delete does not call the block * hash.c (rb_hash_delete): now does not call the block given to the current method. [ruby-core:65861] [Bug #10413] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/-ext-/hash/test_delete.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 test/-ext-/hash/test_delete.rb (limited to 'test/-ext-/hash') diff --git a/test/-ext-/hash/test_delete.rb b/test/-ext-/hash/test_delete.rb new file mode 100644 index 0000000000..d4f2023e75 --- /dev/null +++ b/test/-ext-/hash/test_delete.rb @@ -0,0 +1,19 @@ +require 'test/unit' +require '-test-/hash' + +class TestHash < Test::Unit::TestCase + class TestDelete < Test::Unit::TestCase + def test_delete + hash = Bug::Hash.new + hash[1] = 2 + called = false + assert_equal 1, hash.size + assert_equal true, hash.delete(1) {called = true} + assert_equal false, called, "block called" + assert_equal 0, hash.size + assert_equal false, hash.delete(1) {called = true} + assert_equal false, called, "block called" + assert_equal 0, hash.size + end + end +end -- cgit v1.2.3