summaryrefslogtreecommitdiff
path: root/spec/ruby/core/numeric/integer_spec.rb
blob: acff8eb830852f123c74171b4650736a418f22bd (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

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