aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_proc.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-25 09:47:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-25 09:47:54 +0000
commit520f1372e3052fc46968b3914c7a31680584327a (patch)
tree9c25e49102df425eae7fe9becb444aeaa30ebf03 /test/ruby/test_proc.rb
parent51067428932e6244b7127ba41a9c82ade9904a40 (diff)
downloadruby-520f1372e3052fc46968b3914c7a31680584327a.tar.gz
* test/ruby/test_proc.rb (test_proc_args_unleashed): test for
[ruby-core:19485]. * test/ruby/test_yield.rb (test_block_args_unleashed): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_proc.rb')
-rw-r--r--test/ruby/test_proc.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/test_proc.rb b/test/ruby/test_proc.rb
index ee53eeaf3a..8d2521b02f 100644
--- a/test/ruby/test_proc.rb
+++ b/test/ruby/test_proc.rb
@@ -309,4 +309,11 @@ class TestProc < Test::Unit::TestCase
def test_binding2
assert_raise(ArgumentError) { proc {}.curry.binding }
end
+
+ def test_proc_args_unleashed
+ r = proc {|a,b=1,*c,d,e|
+ [a,b,c,d,e]
+ }.call(1,2,3,4,5)
+ assert_equal([1,2,[3],4,5], r, "[ruby-core:19485]")
+ end
end