2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-26 05:31:09 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe Ci::PipelineVariable do
|
2017-07-26 05:31:09 -04:00
|
|
|
subject { build(:ci_pipeline_variable) }
|
|
|
|
|
2019-05-06 09:11:42 -04:00
|
|
|
it_behaves_like "CI variable"
|
|
|
|
|
2021-09-07 05:11:43 -04:00
|
|
|
it { is_expected.to validate_presence_of(:key) }
|
2018-10-01 13:22:41 -04:00
|
|
|
|
|
|
|
describe '#hook_attrs' do
|
|
|
|
let(:variable) { create(:ci_pipeline_variable, key: 'foo', value: 'bar') }
|
|
|
|
|
|
|
|
subject { variable.hook_attrs }
|
|
|
|
|
|
|
|
it { is_expected.to be_a(Hash) }
|
|
|
|
it { is_expected.to eq({ key: 'foo', value: 'bar' }) }
|
|
|
|
end
|
2017-07-26 05:31:09 -04:00
|
|
|
end
|