Skip to content
Extraits de code Groupes Projets
Valider d2e0edd7 rédigé par Matt Jankowski's avatar Matt Jankowski Validation de Eugen Rochko
Parcourir les fichiers

Add spec coverage for regeneration worker (#3143)

parent 3002a894
Branches
Étiquettes
Aucune requête de fusion associée trouvée
...@@ -7,7 +7,8 @@ class RegenerationWorker ...@@ -7,7 +7,8 @@ class RegenerationWorker
def perform(account_id, _ = :home) def perform(account_id, _ = :home)
account = Account.find(account_id) account = Account.find(account_id)
PrecomputeFeedService.new.call(account) PrecomputeFeedService.new.call(account)
rescue ActiveRecord::RecordNotFound
true
end end
end end
# 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
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter