summaryrefslogtreecommitdiff
path: root/spec/ruby/core/integer/integer_spec.rb
blob: 393f072563bfdc80ce0148f1242ff884bdb75acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require File.expand_path('../../../spec_helper', __FILE__)

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

  ruby_version_is "2.4" do
    it "is the class of both small and large integers" do
      42.class.should equal(Integer)
      bignum_value.class.should equal(Integer)
    end
  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