summaryrefslogtreecommitdiff
path: root/spec/serializers/variable_entity_spec.rb
blob: effc0022633c4b9d61857371fc35c1b3cd7dbb64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'

describe VariableEntity do
  let(:variable) { create(:ci_variable) }
  let(:entity) { described_class.new(variable) }

  describe '#as_json' do
    subject { entity.as_json }

    it 'contains required fields' do
      expect(subject).to include(:id, :key, :value, :protected)
    end
  end
end