Sha256: 1eef477ba745935da08f23df35162547ccff922c37a127dc2292d988a632ab64

Contents?: true

Size: 1.08 KB

Versions: 12

Compression:

Stored size: 1.08 KB

Contents

require File.join(File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__)))), 'spec_helper')
require File.join(File.dirname(File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__))))), 'lib', 'reek', 'core', 'sniffer')

describe Hash do
  before :each do
    @first = {
      'one' => {'two' => 3, 'three' => 4},
      'two' => {'four' => true}
    }
  end

  it 'should deep merge Hashes' do
    other = Hash.new {|hash,key| hash[key] = {} }
    other['one']['gunk'] = 45
    other['two']['four'] = false
    other.push_keys(@first)
    @first['two']['four'].should == false
    @first['one'].keys.length.should == 3
  end
  
  it 'should deep copy Hashes' do
    second = @first.deep_copy
    second['two'].object_id.should_not be_eql(@first['two'].object_id)
  end
  
  it 'should merge array values' do
    @first['three'] = [1,2,3]
  end
end

describe Hash, 'merging arrays' do
  it 'should merge array values' do
    first = {'key' => {'one' => [1,2,3]}}
    second = {'key' => {'one' => [4,5]}}
    second.push_keys(first)
    first['key']['one'].should == [1,2,3,4,5]
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
reek-1.3.1 spec/reek/core/config_spec.rb
reek-1.3 spec/reek/core/config_spec.rb
reek-1.2.13 spec/reek/core/config_spec.rb
reek-1.2.12 spec/reek/core/config_spec.rb
reek-1.2.11 spec/reek/core/config_spec.rb
reek-1.2.10 spec/reek/core/config_spec.rb
reek-1.2.9 spec/reek/core/config_spec.rb
reek-1.2.8 spec/reek/core/config_spec.rb
reek-1.2.7.3 spec/reek/core/config_spec.rb
reek-1.2.7.2 spec/reek/core/config_spec.rb
reek-1.2.7.1 spec/reek/core/config_spec.rb
reek-1.2.7 spec/reek/core/config_spec.rb