summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/yaml_processor_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/ci/yaml_processor_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/yaml_processor_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/lib/gitlab/ci/yaml_processor_spec.rb b/spec/lib/gitlab/ci/yaml_processor_spec.rb
index e5c5aaa2265..cfc3d852de0 100644
--- a/spec/lib/gitlab/ci/yaml_processor_spec.rb
+++ b/spec/lib/gitlab/ci/yaml_processor_spec.rb
@@ -87,6 +87,29 @@ module Gitlab
end
end
+ describe 'tags entry with default values' do
+ it 'applies default values' do
+ config = YAML.dump({ default: { tags: %w[A B] },
+ rspec: { script: "rspec" } })
+
+ config_processor = Gitlab::Ci::YamlProcessor.new(config)
+
+ expect(config_processor.stage_builds_attributes("test").size).to eq(1)
+ expect(config_processor.stage_builds_attributes("test").first).to eq({
+ stage: "test",
+ stage_idx: 2,
+ name: "rspec",
+ only: { refs: %w[branches tags] },
+ options: { script: ["rspec"] },
+ scheduling_type: :stage,
+ tag_list: %w[A B],
+ allow_failure: false,
+ when: "on_success",
+ yaml_variables: []
+ })
+ end
+ end
+
describe 'interruptible entry' do
describe 'interruptible job' do
let(:config) do