summaryrefslogtreecommitdiff
path: root/spec/ruby/core/integer/integer_spec.rb
blob: 2d5d2e3e92dc2ce6760f119eb052e061bc2cc54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative '../../spec_helper'

describe "Integer" do
  it "includes Comparable" do
    Integer.include?(Comparable).should == true
  end

  it "is the class of both small and large integers" do
    42.class.should equal(Integer)
    bignum_value.class.should equal(Integer)
  end
end

describe "Integer#integer?" do
  it "returns true for Integers" do
    0.should.integer?
    -1.should.integer?
    bignum_value.should.integer?
  end
end