summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/rational/zero_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/rational/zero_spec.rb')
-rw-r--r--spec/rubyspec/core/rational/zero_spec.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/rubyspec/core/rational/zero_spec.rb b/spec/rubyspec/core/rational/zero_spec.rb
deleted file mode 100644
index e6dd751922..0000000000
--- a/spec/rubyspec/core/rational/zero_spec.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-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