summaryrefslogtreecommitdiff
path: root/spec/ruby/core/nil/dup_spec.rb
blob: 21b2c9222044713bca9f9bc18151a1f09ea36dbc (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'

ruby_version_is '2.4' do
  describe "NilClass#dup" do
    it "returns self" do
      nil.dup.should equal(nil)
    end
  end
end