Add minor improvements in readability in CI config

This commit is contained in:
Grzegorz Bizon 2016-07-04 11:37:28 +02:00
parent eb151e77ff
commit bfad4c61f1
6 changed files with 6 additions and 8 deletions

View File

@ -26,9 +26,7 @@ module Gitlab
private
def create_node(key, factory)
factory.with(value: @config[key])
factory.with(parent: self)
factory.with(key: key)
factory.with(value: @config[key], key: key, parent: self)
factory.create!
end

View File

@ -13,7 +13,7 @@ module Gitlab
end
def self.default
%w(build test deploy)
%w[build test deploy]
end
end
end

View File

@ -23,6 +23,7 @@ module Gitlab
def unknown_keys
return [] unless config.is_a?(Hash)
config.keys - @node.class.nodes.keys
end

View File

@ -551,8 +551,8 @@ module Ci
config_processor = GitlabCiYamlProcessor.new(config, path)
##
# When variables config is empty, we asumme this is a correct,
# see issue #18775
# When variables config is empty, we assume this is a valid
# configuration, see issue #18775
#
expect(config_processor.job_variables(:rspec))
.to be_an_instance_of(Array).and be_empty

View File

@ -21,7 +21,7 @@ describe Gitlab::Ci::Config::Node::Boolean do
end
context 'when entry value is not valid' do
let(:config) { [ 'incorrect' ] }
let(:config) { ['incorrect'] }
describe '#errors' do
it 'saves errors' do

View File

@ -22,7 +22,6 @@ describe Gitlab::Ci::Config::Node::Configurable do
validator.validate
end
context 'when node validator is invalid' do
let(:instance) { node.new('ls') }