From 0eb19d3bd01bda7765c69395cb6ce34d1c8066c5 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 15 Apr 2008 07:46:38 +0000 Subject: * test/ruby/test_symbol.rb (TestSymbol#test_to_proc): add tests. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16029 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_symbol.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb index f53e61576..ac73dc913 100644 --- a/test/ruby/test_symbol.rb +++ b/test/ruby/test_symbol.rb @@ -77,5 +77,8 @@ class TestSymbol < Test::Unit::TestCase 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 -- cgit