summaryrefslogtreecommitdiff
path: root/spec/ruby/core/integer/integer_spec.rb
blob: f8067cda06dc4fcc9ff2e2f38890a402d542f6f6 (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.integer?.should == true
    -1.integer?.should == true
    bignum_value.integer?.should == true
  end
end