From ed8da2d12ae041b0536d3303659dc98411c2ec4f Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 27 Oct 2014 07:29:32 +0000 Subject: * test/ruby/test_super.rb: add a test to check block passing. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_super.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'test') diff --git a/test/ruby/test_super.rb b/test/ruby/test_super.rb index 820e22134a..e4d3b8d57a 100644 --- a/test/ruby/test_super.rb +++ b/test/ruby/test_super.rb @@ -508,4 +508,22 @@ class TestSuper < Test::Unit::TestCase end assert_equal("A", b.new.foo, bug10263) end + + def test_super_with_block + a = Class.new do + def foo + yield + end + end + + b = Class.new(a) do + def foo + super{ + "b" + } + end + end + + assert_equal "b", b.new.foo{"c"} + end end -- cgit v1.2.3