Sha256: 0e078aad634addf8dfdcc656cdc5463c83387cfe4510554a2b09664cfeceb97a
Contents?: true
Size: 386 Bytes
Versions: 25
Compression:
Stored size: 386 Bytes
Contents
describe Kumogata::Utils do it 'should stringify the hash' do hash = { :foo => { 'bar' => ['1', 2, 3], 'zoo' => :value, }, 12 => :value2 } expect(Kumogata::Utils.stringify(hash)).to eq( { 'foo' => { 'bar' => ['1', '2', '3'], 'zoo' => 'value', }, '12' => 'value2' } ) end end
Version data entries
25 entries across 25 versions & 1 rubygems