diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-05-19 10:55:09 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-19 16:55:09 +0200 |
commit | d2e0edd721e202a0b32485e74b4dbf95148d171e (patch) | |
tree | 1c92e03468ef421715dd022c1f8336113ef1b00a /spec/workers | |
parent | 3002a8941944a3913ee95d865894917570451c69 (diff) |
Add spec coverage for regeneration worker (#3143)
Diffstat (limited to 'spec/workers')
-rw-r--r-- | spec/workers/regeneration_worker_spec.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/workers/regeneration_worker_spec.rb b/spec/workers/regeneration_worker_spec.rb new file mode 100644 index 000000000..c6bdfa0e5 --- /dev/null +++ b/spec/workers/regeneration_worker_spec.rb @@ -0,0 +1,26 @@ +# frozen_string_literal: true + +require 'rails_helper' + +describe RegenerationWorker do + subject { described_class.new } + + describe 'perform' do + let(:account) { Fabricate(:account) } + + it 'calls the precompute feed service for the account' do + service = double(call: nil) + allow(PrecomputeFeedService).to receive(:new).and_return(service) + result = subject.perform(account.id) + + expect(result).to be_nil + expect(service).to have_received(:call).with(account) + end + + it 'fails when account does not exist' do + result = subject.perform('aaa') + + expect(result).to eq(true) + end + end +end |