diff options
author | James Lopez <james@jameslopez.es> | 2017-05-23 08:52:23 +0200 |
---|---|---|
committer | James Lopez <james@jameslopez.es> | 2017-05-23 08:52:23 +0200 |
commit | 4731ae75c6aaeac76ae9ca549453ff8536b445e5 (patch) | |
tree | 3f4614ffd2a2d8f94fb4bedea176416d6d49f36a | |
parent | ad47f2094bf61867d2b5e4c24540c7c5b8a6358d (diff) | |
download | gitlab-ce-4731ae75c6aaeac76ae9ca549453ff8536b445e5.tar.gz |
Fix propagate service spec transient failurefix/transient-service-template-spec
-rw-r--r-- | spec/services/projects/propagate_service_template_spec.rb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/spec/services/projects/propagate_service_template_spec.rb b/spec/services/projects/propagate_service_template_spec.rb index 90eff3bbc1e..8a6a9f09f74 100644 --- a/spec/services/projects/propagate_service_template_spec.rb +++ b/spec/services/projects/propagate_service_template_spec.rb @@ -71,14 +71,18 @@ describe Projects::PropagateServiceTemplate, services: true do end describe 'bulk update' do - it 'creates services for all projects' do - project_total = 5 + let(:project_total) { 5 } + + before do stub_const 'Projects::PropagateServiceTemplate::BATCH_SIZE', 3 project_total.times { create(:empty_project) } - expect { described_class.propagate(service_template) }. - to change { Service.count }.by(project_total + 1) + described_class.propagate(service_template) + end + + it 'creates services for all projects' do + expect(Service.all.reload.count).to eq(project_total + 2) end end |