aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-24 09:39:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-24 09:39:17 +0000
commit7039d452827a25d1da4253d5318f451d27f34076 (patch)
tree294becc336406e7bc13844d9acde8dc8341bf36e /test
parenteaa095dc383eb0020a60e115f11bea9a55bdf6f9 (diff)
downloadruby-7039d452827a25d1da4253d5318f451d27f34076.tar.gz
Integer.sqrt argument check
* numeric.c (rb_int_s_isqrt): check if the argument is an integer. [Feature #13219] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57706 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_integer.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_integer.rb b/test/ruby/test_integer.rb
index 05b0b68ccc..e0927c9ffe 100644
--- a/test/ruby/test_integer.rb
+++ b/test/ruby/test_integer.rb
@@ -466,6 +466,7 @@ class TestInteger < Test::Unit::TestCase
end
def test_square_root
+ assert_raise(TypeError) {Integer.sqrt("x")}
assert_raise(Math::DomainError) {Integer.sqrt(-1)}
assert_equal(0, Integer.sqrt(0))
(1...4).each {|i| assert_equal(1, Integer.sqrt(i))}