diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-22 12:42:57 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-22 12:42:57 +0000 |
| commit | a2b186bee4d4a8aec91cfd46b135f3448f731c54 (patch) | |
| tree | 47500471349bff02a59339d19d7b846572aef0e8 /test | |
| parent | 185e2676afec07e07dc2cbe09db0c8a1965b50af (diff) | |
* eval.c (rb_proc_new): Turn the BLOCK_LAMBDA flag on.
* object.c (sym_to_proc), test/ruby/test_symbol.rb: Add back
Symbol#to_proc, now that it passes the tests.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16150 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
| -rw-r--r-- | test/ruby/test_symbol.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb index 2ccfe64c92..ac73dc9137 100644 --- a/test/ruby/test_symbol.rb +++ b/test/ruby/test_symbol.rb @@ -74,4 +74,11 @@ class TestSymbol < Test::Unit::TestCase assert_inspect_evaled(':$0') assert_inspect_evaled(':$1') end + + def test_to_proc + assert_equal %w(1 2 3), (1..3).map(&:to_s) + assert_nothing_raised(ArgumentError) { :object_id.to_proc.call([]) } + assert_nothing_raised(ArgumentError) { :object_id.to_proc.call([1]) } + assert_nothing_raised(ArgumentError) { :object_id.to_proc.call([1,2]) } + end end |
