1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/spec/lib/importer/accounts_index_importer_spec.rb

17 lines
411 B
Ruby
Raw Normal View History

2023-03-22 06:06:26 -07:00
# frozen_string_literal: true
require 'rails_helper'
describe Importer::AccountsIndexImporter do
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