gitlab-ce/spec/serializers/ci/group_variable_entity_spec.rb

19 lines
472 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Ci::GroupVariableEntity do
let(:variable) { build(:ci_group_variable) }
let(:entity) { described_class.new(variable) }
describe '#as_json' do
subject { entity.as_json }
it 'contains required fields' do
expect(subject.keys).to contain_exactly(
:id, :key, :description, :value, :protected, :variable_type, :environment_scope, :raw, :masked, :hidden
)
end
end
end