Do not enforce using a hash with hidden ci key

This commit is contained in:
Grzegorz Bizon 2016-08-29 09:20:53 +02:00
parent 68b3c8c297
commit b125006517
2 changed files with 2 additions and 14 deletions

View File

@ -9,7 +9,6 @@ module Gitlab
include Validatable
validations do
validates :config, type: Hash
validates :config, presence: true
end

View File

@ -5,11 +5,11 @@ describe Gitlab::Ci::Config::Node::HiddenJob do
describe 'validations' do
context 'when entry config value is correct' do
let(:config) { { image: 'ruby:2.2' } }
let(:config) { [:some, :array] }
describe '#value' do
it 'returns key value' do
expect(entry.value).to eq(image: 'ruby:2.2')
expect(entry.value).to eq [:some, :array]
end
end
@ -21,17 +21,6 @@ describe Gitlab::Ci::Config::Node::HiddenJob do
end
context 'when entry value is not correct' do
context 'incorrect config value type' do
let(:config) { ['incorrect'] }
describe '#errors' do
it 'saves errors' do
expect(entry.errors)
.to include 'hidden job config should be a hash'
end
end
end
context 'when config is empty' do
let(:config) { {} }