summaryrefslogtreecommitdiff
path: root/spec/ruby/core/numeric/integer_spec.rb
blob: adbac4d7aac1ff731bcb574069f2d7f2b5cccb32 (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.should_not.integer?
  end
end