summaryrefslogtreecommitdiff
path: root/spec/ruby/core/rational/zero_spec.rb
blob: e6dd751922f915922cc96f5df93af27c65bfbb6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
describe "Rational#zero?" do
  it "returns true if the numerator is 0" do
    Rational(0,26).zero?.should be_true
  end

  it "returns true if the numerator is 0.0" do
    Rational(0.0,26).zero?.should be_true
  end

  it "returns false if the numerator isn't 0" do
    Rational(26).zero?.should be_false
  end
end