summaryrefslogtreecommitdiff
path: root/spec/ruby/shared/rational/numerator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/shared/rational/numerator.rb')
-rw-r--r--spec/ruby/shared/rational/numerator.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/ruby/shared/rational/numerator.rb b/spec/ruby/shared/rational/numerator.rb
deleted file mode 100644
index 50d768168c..0000000000
--- a/spec/ruby/shared/rational/numerator.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-require_relative '../../spec_helper'
-
-describe :rational_numerator, shared: true do
- it "returns the numerator" do
- Rational(3, 4).numerator.should equal(3)
- Rational(3, -4).numerator.should equal(-3)
-
- Rational(bignum_value, 1).numerator.should == bignum_value
- end
-end