Commit 5ced2d8d authored by Grzegorz Bizon's avatar Grzegorz Bizon

Rename CI/CD job triggering policy class to Policy

parent d546f7d3
...@@ -59,10 +59,10 @@ module Gitlab ...@@ -59,10 +59,10 @@ module Gitlab
entry :services, Entry::Services, entry :services, Entry::Services,
description: 'Services that will be used to execute this job.' description: 'Services that will be used to execute this job.'
entry :only, Entry::Trigger, entry :only, Entry::Policy,
description: 'Refs policy this job will be executed for.' description: 'Refs policy this job will be executed for.'
entry :except, Entry::Trigger, entry :except, Entry::Policy,
description: 'Refs policy this job will be executed for.' description: 'Refs policy this job will be executed for.'
entry :variables, Entry::Variables, entry :variables, Entry::Variables,
......
...@@ -5,7 +5,7 @@ module Gitlab ...@@ -5,7 +5,7 @@ module Gitlab
## ##
# Entry that represents a trigger policy for the job. # Entry that represents a trigger policy for the job.
# #
class Trigger < Node class Policy < Node
include Validatable include Validatable
validations do validations do
......
require 'spec_helper' require 'spec_helper'
describe Gitlab::Ci::Config::Entry::Trigger do describe Gitlab::Ci::Config::Entry::Policy do
let(:entry) { described_class.new(config) } let(:entry) { described_class.new(config) }
describe 'validations' do describe 'validations' do
...@@ -48,7 +48,7 @@ describe Gitlab::Ci::Config::Entry::Trigger do ...@@ -48,7 +48,7 @@ describe Gitlab::Ci::Config::Entry::Trigger do
describe '#errors' do describe '#errors' do
it 'saves errors' do it 'saves errors' do
expect(entry.errors) expect(entry.errors)
.to include 'trigger config should be an array of strings or regexps' .to include 'policy config should be an array of strings or regexps'
end end
end end
end end
......
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