2023-03-22 14:06:26 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe Importer::AccountsIndexImporter do
|
2023-03-22 14:06:26 +01:00
|
|
|
describe 'import!' do
|
|
|
|
let(:pool) { Concurrent::FixedThreadPool.new(5) }
|
|
|
|
let(:importer) { described_class.new(batch_size: 123, executor: pool) }
|
|
|
|
|
|
|
|
before { Fabricate(:account) }
|
|
|
|
|
|
|
|
it 'indexes relevant accounts' do
|
|
|
|
expect { importer.import! }.to update_index(AccountsIndex)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|