Add specs for stage update worker
This commit is contained in:
parent
8f1274ae03
commit
cec2cc3ffa
1 changed files with 22 additions and 0 deletions
22
spec/workers/stage_update_worker_spec.rb
Normal file
22
spec/workers/stage_update_worker_spec.rb
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe StageUpdateWorker do
|
||||||
|
describe '#perform' do
|
||||||
|
context 'when stage exists' do
|
||||||
|
let(:stage) { create(:ci_stage_entity) }
|
||||||
|
|
||||||
|
it 'updates stage status' do
|
||||||
|
expect_any_instance_of(Ci::Stage).to receive(:update_status)
|
||||||
|
|
||||||
|
described_class.new.perform(stage.id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'when stage does not exist' do
|
||||||
|
it 'does not raise exception' do
|
||||||
|
expect { described_class.new.perform(123) }
|
||||||
|
.not_to raise_error
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue