summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-15 07:46:38 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-15 07:46:38 +0000
commitbf52f99b6bc47beae34b5abe0276c5d20f282de2 (patch)
tree7aa32eae09a7afcdf9e46c789375eddab79e7eb1 /test
parent6a98d417f01e43f5217f37d2142651b50fd41986 (diff)
* test/ruby/test_symbol.rb (TestSymbol#test_to_proc): add tests.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16029 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_symbol.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb
index f53e615766..ac73dc9137 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