summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/integer/shared/to_i.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/integer/shared/to_i.rb')
-rw-r--r--spec/rubyspec/core/integer/shared/to_i.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/rubyspec/core/integer/shared/to_i.rb b/spec/rubyspec/core/integer/shared/to_i.rb
deleted file mode 100644
index 7b974cd3a7..0000000000
--- a/spec/rubyspec/core/integer/shared/to_i.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-describe :integer_to_i, shared: true do
- it "returns self" do
- 10.send(@method).should eql(10)
- (-15).send(@method).should eql(-15)
- bignum_value.send(@method).should eql(bignum_value)
- (-bignum_value).send(@method).should eql(-bignum_value)
- end
-end