diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-07 16:11:14 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-07 16:11:14 +0000 |
| commit | 49925b79541ebca9430321ef843f57d95dec289a (patch) | |
| tree | 32ac664425a6c35d06c80d3ce556016a29854414 /test | |
| parent | 61cf647f2baed7aee80a293e984bf8f958faf73e (diff) | |
| download | ruby-49925b79541ebca9430321ef843f57d95dec289a.tar.gz ruby-49925b79541ebca9430321ef843f57d95dec289a.tar.xz ruby-49925b79541ebca9430321ef843f57d95dec289a.zip | |
add test_rand_0x100000000.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7917 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
| -rw-r--r-- | test/ruby/test_rand.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/test_rand.rb b/test/ruby/test_rand.rb index 93cf87e78..e2fd127f9 100644 --- a/test/ruby/test_rand.rb +++ b/test/ruby/test_rand.rb @@ -50,6 +50,13 @@ class TestRand < Test::Unit::TestCase } end + def test_rand_0x100000000 + srand(311702798) + %w(4119812344 3870378946 80324654 4294967296 410016213).each {|w| + assert_equal(w.to_i, rand(0x100000001)) + } + end + def test_0x1000000000000 srand(0) %w(11736396900911 |
