mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ruby/test_array.rb: add a test for Array#rotate, rotate!.
* test/ruby/test_dir.rb, test/ruby/test_fnmatch.rb: add some tests (for coverage of dir.c). * test/ruby/test_enum.rb: add a test for Enumerable#minmax. * test/ruby/test_enumerator.rb: add some tests for Enumerator#inspect, Enumerator::Generator and Yielder. * test/ruby/test_env.rb: add a test for ENV#index. * test/ruby/test_exception.rb: add some tests (for coverage of error.c). * test/ruby/test_hash.rb: add a test for recursive check. * test/ruby/test_integer.rb: add a test for number of argument of Integer. * test/ruby/test_method.rb: add a test for define_method. * test/ruby/test_module.rb: add a test for constant of included module. * test/ruby/test_proc.rb: add a test for parameters with cfunc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26379 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d8d5e67184
commit
bebd7e4511
13 changed files with 205 additions and 5 deletions
|
@ -84,6 +84,12 @@ class TestInteger < Test::Unit::TestCase
|
|||
assert_raise(ArgumentError) { Integer("0x123", 10) }
|
||||
assert_raise(ArgumentError) { Integer(1234, 10) }
|
||||
assert_raise(ArgumentError) { Integer(12.34, 10) }
|
||||
assert_raise(ArgumentError) { Integer(Object.new, 1) }
|
||||
|
||||
assert_raise(ArgumentError) { Integer(1, 1, 1) }
|
||||
|
||||
assert_equal(2 ** 50, Integer(2.0 ** 50))
|
||||
assert_raise(TypeError) { Integer(nil) }
|
||||
end
|
||||
|
||||
def test_int_p
|
||||
|
@ -192,9 +198,4 @@ class TestInteger < Test::Unit::TestCase
|
|||
assert_equal(-1111_1111_1111_1111_1111_1111_1111_1110, (-1111_1111_1111_1111_1111_1111_1111_1111).round(-1))
|
||||
assert_equal(Bignum, (-1111_1111_1111_1111_1111_1111_1111_1111).round(-1).class)
|
||||
end
|
||||
|
||||
def test_Integer2
|
||||
assert_equal(2 ** 50, Integer(2.0 ** 50))
|
||||
assert_raise(TypeError) { Integer(nil) }
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue