summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/fixnum/uminus_spec.rb
blob: ac676400d10baf497bde8071f2a09cea1e1382bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require File.expand_path('../../../spec_helper', __FILE__)

describe "Fixnum#-@" do
  it "returns self as a negative value" do
    2.send(:-@).should == -2
    -2.should == -2
    -268435455.should == -268435455
    (--5).should == 5
    -8.send(:-@).should == 8
  end

  it "negates self at Fixnum/Bignum boundaries" do
    fixnum_max.send(:-@).should == (0 - fixnum_max)
    fixnum_min.send(:-@).should == (0 - fixnum_min)
  end
end