debian-mirror-gitlab/spec/serializers/ci/group_variable_entity_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
449 B
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Ci::GroupVariableEntity do
2023-03-04 22:38:38 +05:30
let(:variable) { build(:ci_group_variable) }
2018-03-17 18:26:18 +05:30
let(:entity) { described_class.new(variable) }
describe '#as_json' do
subject { entity.as_json }
it 'contains required fields' do
2023-03-04 22:38:38 +05:30
expect(subject.keys).to contain_exactly(
:id, :key, :value, :protected, :variable_type, :environment_scope, :raw, :masked
)
2018-03-17 18:26:18 +05:30
end
end
end