aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/integer/dup_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/integer/dup_spec.rb')
-rw-r--r--spec/ruby/core/integer/dup_spec.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/ruby/core/integer/dup_spec.rb b/spec/ruby/core/integer/dup_spec.rb
deleted file mode 100644
index f46bdf89bd..0000000000
--- a/spec/ruby/core/integer/dup_spec.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-ruby_version_is '2.4' do
- describe "Integer#dup" do
- it "returns self" do
- int = 2
- int.dup.should equal(int)
- end
- end
-end