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/serializers/ci/dag_job_entity_spec.rb')
-rw-r--r--spec/serializers/ci/dag_job_entity_spec.rb13
1 files changed, 10 insertions, 3 deletions
diff --git a/spec/serializers/ci/dag_job_entity_spec.rb b/spec/serializers/ci/dag_job_entity_spec.rb
index 19b849c3879..eaaf39d6bfc 100644
--- a/spec/serializers/ci/dag_job_entity_spec.rb
+++ b/spec/serializers/ci/dag_job_entity_spec.rb
@@ -16,14 +16,23 @@ describe Ci::DagJobEntity do
end
context 'when job is stage scheduled' do
+ it 'contains the name scheduling_type' do
+ expect(subject[:scheduling_type]).to eq 'stage'
+ end
+
it 'does not expose needs' do
expect(subject).not_to include(:needs)
end
end
context 'when job is dag scheduled' do
+ let(:job) { create(:ci_build, scheduling_type: 'dag') }
+
+ it 'contains the name scheduling_type' do
+ expect(subject[:scheduling_type]).to eq 'dag'
+ end
+
context 'when job has needs' do
- let(:job) { create(:ci_build, scheduling_type: 'dag') }
let!(:need) { create(:ci_build_need, build: job, name: 'compile') }
it 'exposes the array of needs' do
@@ -32,8 +41,6 @@ describe Ci::DagJobEntity do
end
context 'when job has empty needs' do
- let(:job) { create(:ci_build, scheduling_type: 'dag') }
-
it 'exposes an empty array of needs' do
expect(subject[:needs]).to eq []
end