~cytrogen/masto-fe

ref: f1d250135ccf9be5c4d982a2c48417da89d38eb5 masto-fe/spec/workers/regeneration_worker_spec.rb -rw-r--r-- 668 bytes
f1d25013 — Santiago Kozak Allow filter form in profiles directory to wrap (#26682) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 = instance_double(PrecomputeFeedService, 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 be(true)
    end
  end
end