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

Version Path
gooddata-0.6.30 spec/unit/extensions/hash_spec.rb
gooddata-0.6.29 spec/unit/extensions/hash_spec.rb
gooddata-0.6.28 spec/unit/extensions/hash_spec.rb
gooddata-0.6.27 spec/unit/extensions/hash_spec.rb
gooddata-0.6.26 spec/unit/extensions/hash_spec.rb
gooddata-0.6.25 spec/unit/extensions/hash_spec.rb
gooddata-0.6.24 spec/unit/extensions/hash_spec.rb
gooddata-0.6.23 spec/unit/extensions/hash_spec.rb
gooddata-0.6.22 spec/unit/extensions/hash_spec.rb