diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-07-05 07:38:41 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-07-05 07:38:41 +0000 |
commit | 8a30534f3082dd7a9903172be20cd33b435753d4 (patch) | |
tree | 8861b51f7fd9fa15bc9d86a5c808a0e417efe161 /test/ruby | |
parent | e428bdb8546937c2bcb90ba413290e0335a45610 (diff) | |
download | ruby-8a30534f3082dd7a9903172be20cd33b435753d4.tar.gz ruby-8a30534f3082dd7a9903172be20cd33b435753d4.tar.xz ruby-8a30534f3082dd7a9903172be20cd33b435753d4.zip |
* numeric.c (int_pow): fix previous nubu's commit.
* test/ruby/test_fixnum.rb: new test.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r-- | test/ruby/test_fixnum.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/ruby/test_fixnum.rb b/test/ruby/test_fixnum.rb new file mode 100644 index 000000000..57999d4b0 --- /dev/null +++ b/test/ruby/test_fixnum.rb @@ -0,0 +1,26 @@ +require 'test/unit' + +class TestFixnum < Test::Unit::TestCase + def setup + @verbose = $VERBOSE + $VERBOSE = nil + end + + def teardown + $VERBOSE = @verbose + end + + def test_pow + [1, 2, 2**64, 2**63*3, 2**64*3].each do |y| + [1, 3].each do |x| + z1 = x**y + z2 = (-x)**y + if y % 2 == 1 + assert_equal(z2, -z1) + else + assert_equal(z2, z1) + end + end + end + end +end |