spec/lib/liquidize/helper_spec.rb in liquidize-0.0.2 vs spec/lib/liquidize/helper_spec.rb in liquidize-0.0.3
- old
+ new
@@ -1,12 +1,12 @@
require 'spec_helper'
RSpec.describe Liquidize::Helper do
describe '.recursive_stringify_keys' do
- let(:original) { { first: { a: 'a', b: 'b', c: 3}, second: :qwerty, third: [] } }
- let(:result) { { 'first' => { 'a' => 'a', 'b' => 'b', 'c' => 3}, 'second' => :qwerty, 'third' => [] } }
+ let(:original) { { first: { a: 'a', b: 'b', c: 3 }, second: :qwerty, third: [{ x: 1, y: 2 }] } }
+ let(:result) { { 'first' => { 'a' => 'a', 'b' => 'b', 'c' => 3 }, 'second' => :qwerty, 'third' => ['x' => 1, 'y' => 2] } }
it 'converts all keys to strings' do
expect(Liquidize::Helper.recursive_stringify_keys(original)).to eq(result)
end
end
-end
\ No newline at end of file
+end