Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/ci/config/entry/processable_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/config/entry/processable_spec.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/lib/gitlab/ci/config/entry/processable_spec.rb b/spec/lib/gitlab/ci/config/entry/processable_spec.rb
index cc32c57e873..5b9337ede34 100644
--- a/spec/lib/gitlab/ci/config/entry/processable_spec.rb
+++ b/spec/lib/gitlab/ci/config/entry/processable_spec.rb
@@ -278,13 +278,8 @@ RSpec.describe Gitlab::Ci::Config::Entry::Processable do
context 'when workflow rules is not used' do
let(:workflow) { double('workflow', 'has_rules?' => false) }
- let(:ci_value_change_for_processable_and_rules_entry) { true }
before do
- stub_feature_flags(
- ci_value_change_for_processable_and_rules_entry: ci_value_change_for_processable_and_rules_entry
- )
-
entry.compose!(deps)
end
@@ -308,14 +303,6 @@ RSpec.describe Gitlab::Ci::Config::Entry::Processable do
it 'raises a warning' do
expect(entry.warnings).to contain_exactly(/may allow multiple pipelines/)
end
-
- context 'when the FF ci_value_change_for_processable_and_rules_entry is disabled' do
- let(:ci_value_change_for_processable_and_rules_entry) { false }
-
- it 'raises a warning' do
- expect(entry.warnings).to contain_exactly(/may allow multiple pipelines/)
- end
- end
end
context 'and its value is `never`' do