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/models/ci/processable_spec.rb')
-rw-r--r--spec/models/ci/processable_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/models/ci/processable_spec.rb b/spec/models/ci/processable_spec.rb
index e03f54aa728..e8ef7b29681 100644
--- a/spec/models/ci/processable_spec.rb
+++ b/spec/models/ci/processable_spec.rb
@@ -25,20 +25,6 @@ describe Ci::Processable do
it 'returns all needs' do
expect(with_aggregated_needs.first.aggregated_needs_names).to contain_exactly('test1', 'test2')
end
-
- context 'with ci_dag_support disabled' do
- before do
- stub_feature_flags(ci_dag_support: false)
- end
-
- it 'returns all processables' do
- expect(with_aggregated_needs).to contain_exactly(processable)
- end
-
- it 'returns empty needs' do
- expect(with_aggregated_needs.first.aggregated_needs_names).to be_nil
- end
- end
end
context 'without needs' do