summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/rational/integer_spec.rb
blob: 451e42ee14f72bd5f4fe0b2852cfe77ed302f82f (plain)
1
2
3
4
5
6
7
8
9
describe "Rational#integer?" do
  it "returns false for a rational with a numerator and no denominator" do
    Rational(20).integer?.should be_false
  end

  it "returns false for a rational with a numerator and a denominator" do
    Rational(20,3).integer?.should be_false
  end
end