2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "Integer" do
|
|
|
|
it "includes Comparable" do
|
|
|
|
Integer.include?(Comparable).should == true
|
|
|
|
end
|
2017-10-28 15:15:48 +00:00
|
|
|
|
|
|
|
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
|
2017-05-07 12:04:49 +00:00
|
|
|
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
|