aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/bignum/uminus_spec.rb
blob: 7ec432ac71145ff24bf468e19e02ae76c1c0cc78 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)

describe "Bignum#-@" do
  it "returns self as a negative value" do
    bignum_value.send(:-@).should == -9223372036854775808
    (-bignum_value).send(:-@).should == 9223372036854775808

    bignum_value(921).send(:-@).should == -9223372036854776729
    (-bignum_value(921).send(:-@)).should == 9223372036854776729
  end
end