summaryrefslogtreecommitdiff
path: root/spec/serializers/variable_entity_spec.rb
blob: 10664ff66ec3913b674f2f06b0dcadd72888a71b (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, :environment_scope)
    end
  end
end