2017-07-26 05:31:09 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-09-28 12:49:42 -04:00
|
|
|
describe Ci::PipelineVariable do
|
2017-07-26 05:31:09 -04:00
|
|
|
subject { build(:ci_pipeline_variable) }
|
|
|
|
|
|
|
|
it { is_expected.to include_module(HasVariable) }
|
|
|
|
it { is_expected.to validate_uniqueness_of(:key).scoped_to(:pipeline_id) }
|
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
|