summaryrefslogtreecommitdiff
path: root/spec/ruby/core/numeric/integer_spec.rb
blob: 5d4bf003609bcf0ae99e1f104b399059c2f18ead (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Numeric#integer?" do
  it "returns false" do
    NumericSpecs::Subclass.new.integer?.should == false
  end
end