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

17 lines
395 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::VariableEntity do
2018-03-17 18:26:18 +05:30
let(:variable) { create(:ci_variable) }
let(:entity) { described_class.new(variable) }
describe '#as_json' do
subject { entity.as_json }
it 'contains required fields' do
2020-03-13 15:44:24 +05:30
expect(subject).to include(:id, :key, :value, :protected, :environment_scope, :variable_type)
2018-03-17 18:26:18 +05:30
end
end
end