Commit bfad4c61 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Add minor improvements in readability in CI config

parent eb151e77
......@@ -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
......
......@@ -13,7 +13,7 @@ module Gitlab
end
def self.default
%w(build test deploy)
%w[build test deploy]
end
end
end
......
......@@ -23,6 +23,7 @@ module Gitlab
def unknown_keys
return [] unless config.is_a?(Hash)
config.keys - @node.class.nodes.keys
end
......
......@@ -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
......
......@@ -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
......
......@@ -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') }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment