2015-08-25 21:42:46 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Ci::Variable do
|
2017-05-08 15:56:37 -04:00
|
|
|
subject { build(:ci_variable) }
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-21 13:30:12 -04:00
|
|
|
describe 'validations' do
|
2017-06-29 10:00:57 -04:00
|
|
|
it { is_expected.to include_module(HasVariable) }
|
2017-05-03 14:51:55 -04:00
|
|
|
it { is_expected.to include_module(Presentable) }
|
2017-06-21 13:30:12 -04:00
|
|
|
it { is_expected.to validate_uniqueness_of(:key).scoped_to(:project_id, :environment_scope) }
|
|
|
|
end
|
2016-12-02 07:54:57 -05:00
|
|
|
|
2017-06-01 09:48:31 -04:00
|
|
|
describe '.unprotected' do
|
|
|
|
subject { described_class.unprotected }
|
|
|
|
|
|
|
|
context 'when variable is protected' do
|
|
|
|
before do
|
|
|
|
create(:ci_variable, :protected)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nothing' do
|
|
|
|
is_expected.to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when variable is not protected' do
|
|
|
|
let(:variable) { create(:ci_variable, protected: false) }
|
|
|
|
|
|
|
|
it 'returns the variable' do
|
|
|
|
is_expected.to contain_exactly(variable)
|
|
|
|
end
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|