# encoding: utf-8 describe 'Hash#symbolize_keys_recursively' do it 'should convert keys to symbols' do hash_old = { 'foo' => 'bar' } hash_new = { :foo => 'bar' } hash_old.symbolize_keys_recursively.must_equal hash_new end it 'should not require string keys' do hash_old = { Time.now => 'abc' } hash_new = hash_old hash_old.symbolize_keys_recursively.must_equal hash_new end end describe 'Hash#stringify_keys_recursively' do it 'should leave strings as strings' do hash_old = { 'foo' => 'bar' } hash_new = { 'foo' => 'bar' } hash_old.stringify_keys_recursively.must_equal hash_new end it 'should convert symbols to strings' do hash_old = { :foo => 'bar' } hash_new = { 'foo' => 'bar' } hash_old.stringify_keys_recursively.must_equal hash_new end it 'should convert integers to strings' do hash_old = { 123 => 'bar' } hash_new = { '123' => 'bar' } hash_old.stringify_keys_recursively.must_equal hash_new end it 'should convert nil to an empty string' do hash_old = { nil => 'bar' } hash_new = { '' => 'bar' } hash_old.stringify_keys_recursively.must_equal hash_new end end describe 'Hash#freeze_recursively' do include Nanoc::TestHelpers it 'should prevent first-level elements from being modified' do hash = { :a => { :b => :c } } hash.freeze_recursively assert_raises_frozen_error do hash[:a] = 123 end end it 'should prevent second-level elements from being modified' do hash = { :a => { :b => :c } } hash.freeze_recursively assert_raises_frozen_error do hash[:a][:b] = 123 end end it 'should not freeze infinitely' do a = {} a[:x] = a a.freeze_recursively assert a.frozen? assert a[:x].frozen? assert_equal a, a[:x] end end describe 'Hash#checksum' do it 'should work' do expectation = 'wy7gHokc700tqJ/BmJ+EK6/F0bc=' { :foo => 123 }.checksum.must_equal expectation end it 'should not sort keys' do if RUBY_VERSION =~ /\A1\.8./ skip "Ruby 1.8.x does not have ordered hashes" end a = { :a => 1, :c => 2, :b => 3 }.checksum b = { :a => 1, :b => 3, :c => 2 }.checksum a.wont_equal b end end