summaryrefslogtreecommitdiff
path: root/spec/ruby/core/bignum/shared/abs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/bignum/shared/abs.rb')
-rw-r--r--spec/ruby/core/bignum/shared/abs.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/ruby/core/bignum/shared/abs.rb b/spec/ruby/core/bignum/shared/abs.rb
deleted file mode 100644
index 35fd85060c..0000000000
--- a/spec/ruby/core/bignum/shared/abs.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-describe :bignum_abs, shared: true do
- it "returns the absolute value" do
- bignum_value(39).send(@method).should == 9223372036854775847
- (-bignum_value(18)).send(@method).should == 9223372036854775826
- end
-end