mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test the actual value of (10**32768-1).to_s.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0e0229f302
commit
86294fad68
1 changed files with 1 additions and 3 deletions
|
@ -163,9 +163,7 @@ class TestBignum < Test::Unit::TestCase
|
|||
|
||||
def test_to_s2
|
||||
assert_raise(ArgumentError) { T31P.to_s(37) }
|
||||
str = (10**32768-1).to_s
|
||||
assert_equal("q", str.tr_s("9", "q"))
|
||||
assert_equal(32768, str.size)
|
||||
assert_equal("9" * 32768, (10**32768-1).to_s)
|
||||
assert_raise(RangeError) { Process.wait(1, T64P) }
|
||||
assert_equal("0", T_ZERO.to_s)
|
||||
assert_equal("1", T_ONE.to_s)
|
||||
|
|
Loading…
Reference in a new issue