summaryrefslogtreecommitdiff
path: root/spec/ruby/core/integer/dup_spec.rb
blob: f46bdf89bdaf74ea8f200b6d0d0a5413a4b1fa48 (plain)
1
2
3
4
5
6
7
8
9
10
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