2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Ci::PipelineVariable do
|
2017-09-10 17:25:29 +05:30
|
|
|
subject { build(:ci_pipeline_variable) }
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
it_behaves_like "CI variable"
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it { is_expected.to validate_uniqueness_of(:key).scoped_to(:pipeline_id) }
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
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-09-10 17:25:29 +05:30
|
|
|
end
|