1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/integer/integer_spec.rb

16 lines
350 B
Ruby
Raw Normal View History

require File.expand_path('../../../spec_helper', __FILE__)
describe "Integer" do
it "includes Comparable" do
Integer.include?(Comparable).should == true
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