Sha256: 91e504414f1dd52516b2376cfad3db345cf6f979b0d6169f1988dabc1b6c8fcd
Contents?: true
Size: 553 Bytes
Versions: 29
Compression:
Stored size: 553 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. describe Hash do describe '#deep_dup' do it 'should crete a deep copy' do x = { :a => { :b => :c } } y = x.dup deep_y = GoodData::Helpers.deep_dup(x) y[:a].object_id.should === x[:a].object_id deep_y[:a].object_id.should_not === x[:a].object_id end end end
Version data entries
29 entries across 29 versions & 2 rubygems