You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
636 B

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe RegenerationWorker do
  4. subject { described_class.new }
  5. describe 'perform' do
  6. let(:account) { Fabricate(:account) }
  7. it 'calls the precompute feed service for the account' do
  8. service = double(call: nil)
  9. allow(PrecomputeFeedService).to receive(:new).and_return(service)
  10. result = subject.perform(account.id)
  11. expect(result).to be_nil
  12. expect(service).to have_received(:call).with(account)
  13. end
  14. it 'fails when account does not exist' do
  15. result = subject.perform('aaa')
  16. expect(result).to eq(true)
  17. end
  18. end
  19. end