summaryrefslogtreecommitdiff
path: root/test/ruby/test_proc.rb
diff options
context:
space:
mode:
authorktsj <ktsj@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-17 13:18:54 +0000
committerktsj <ktsj@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-17 13:18:54 +0000
commitcc9a7adeacdbb7f5ad18460680eebb69524e2dee (patch)
treee2996623c404fca01b97bcd289805b7f5313c65e /test/ruby/test_proc.rb
parent62bd8db1985736d23d68608c70c32d56432a84fd (diff)
* test/ruby/test_proc.rb (TestProc#test_block_given_method_to_proc):
run test for r41359. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_proc.rb')
-rw-r--r--test/ruby/test_proc.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/ruby/test_proc.rb b/test/ruby/test_proc.rb
index c5352e342e..2db9108534 100644
--- a/test/ruby/test_proc.rb
+++ b/test/ruby/test_proc.rb
@@ -191,7 +191,6 @@ class TestProc < Test::Unit::TestCase
def test_block_given_method_to_proc
bug8341 = '[Bug #8341]'
- skip bug8341
m = method(:m_block_given?).to_proc
assert(!m.call, "#{bug8341} without block")
assert(m.call {}, "#{bug8341} with block")