summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/serializer/ci/variables_spec.rb
blob: 02f1d543e4be176a2d2483a615852d4c7020ad66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::Serializer::Ci::Variables do
  subject do
    described_class.load(described_class.dump(object))
  end

  let(:object) do
    [{ 'key' => :key, 'value' => 'value', 'public' => true },
     { key: 'wee', value: 1, public: false }]
  end

  it 'converts keys into strings and symbolizes hash' do
    is_expected.to eq(
      [
        { key: 'key', value: 'value', public: true },
        { key: 'wee', value: 1, public: false }
      ])
  end
end