summaryrefslogtreecommitdiff
path: root/spec/hashie/extensions/mash/symbolize_keys_spec.rb
blob: 98467372b2fa1ad8d12b569a15427c6598cfb2b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require 'spec_helper'

RSpec.describe Hashie::Extensions::Mash::SymbolizeKeys do
  it 'raises an error when included in a class that is not a Mash' do
    expect do
      Class.new do
        include Hashie::Extensions::Mash::SymbolizeKeys
      end
    end.to raise_error(ArgumentError)
  end

  it 'symbolizes all keys in the Mash' do
    my_mash = Class.new(Hashie::Mash) do
      include Hashie::Extensions::Mash::SymbolizeKeys
    end

    expect(my_mash.new('test' => 'value').to_h).to eq(test: 'value')
  end

  context 'implicit to_hash on double splat' do
    let(:destructure) { ->(**opts) { opts } }
    let(:my_mash) do
      Class.new(Hashie::Mash) do
        include Hashie::Extensions::Mash::SymbolizeKeys
      end
    end
    let(:instance) { my_mash.new('outer' => { 'inner' => 42 }, 'testing' => [1, 2, 3]) }

    subject { destructure.call(**instance) }

    it 'is converted on method calls' do
      expect(subject).to eq(outer: { inner: 42 }, testing: [1, 2, 3])
    end

    it 'is converted on explicit operator call' do
      expect(**instance).to eq(outer: { inner: 42 }, testing: [1, 2, 3])
    end
  end
end