56de781a2c
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
22 lines
540 B
Ruby
22 lines
540 B
Ruby
require 'spec_helper'
|
|
|
|
describe PipelineUpdateWorker do
|
|
describe '#perform' do
|
|
context 'when pipeline exists' do
|
|
let(:pipeline) { create(:ci_pipeline) }
|
|
|
|
it 'updates pipeline status' do
|
|
expect_any_instance_of(Ci::Pipeline).to receive(:update_status)
|
|
|
|
described_class.new.perform(pipeline.id)
|
|
end
|
|
end
|
|
|
|
context 'when pipeline does not exist' do
|
|
it 'does not raise exception' do
|
|
expect { described_class.new.perform(123) }
|
|
.not_to raise_error
|
|
end
|
|
end
|
|
end
|
|
end
|