Skip to content
Snippets Groups Projects
Commit 436514d2 authored by James Lopez's avatar James Lopez
Browse files

Fix 9-2-stable propagate service spec

parent 49ed9060
No related branches found
No related tags found
1 merge request!12258Update Prometheus Merge Request Metrics page
Pipeline #
Loading
Loading
@@ -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
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment