From 770128ade36db597395630f861fd9d801428ef2b Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 9 Nov 2014 14:58:33 +0000 Subject: test_bmethod.rb: block in bmethod test * test/-ext-/proc/test_bmethod.rb (test_super_in_bmethod): block in bmethod test for [Feature #10195]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48350 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/-ext-/proc/test_bmethod.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/-ext-/proc/test_bmethod.rb') diff --git a/test/-ext-/proc/test_bmethod.rb b/test/-ext-/proc/test_bmethod.rb index 09f52140b9..2d68adc1b9 100644 --- a/test/-ext-/proc/test_bmethod.rb +++ b/test/-ext-/proc/test_bmethod.rb @@ -21,4 +21,11 @@ class TestProc::TestBMethod obj = Bound.new assert_equal([1, 42], obj.foo(1)) end + + def test_block_super + obj = Bound.new + result = nil + obj.foo(2) {|*a| result = a} + assert_equal([2, 42], result) + end end -- cgit v1.2.3