blob: 2e4f783d5cc6cd3cac9f89440fefe7e2ed141b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require_relative "../../spec_helper"
describe "Rational#zero?" do
it "returns true if the numerator is 0" do
Rational(0,26).zero?.should == true
end
it "returns true if the numerator is 0.0" do
Rational(0.0,26).zero?.should == true
end
it "returns false if the numerator isn't 0" do
Rational(26).zero?.should == false
end
end
|