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.
17 lines
410 B
17 lines
410 B
2 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
describe Importer::StatusesIndexImporter do
|
||
|
describe 'import!' do
|
||
|
let(:pool) { Concurrent::FixedThreadPool.new(5) }
|
||
|
let(:importer) { described_class.new(batch_size: 123, executor: pool) }
|
||
|
|
||
|
before { Fabricate(:status) }
|
||
|
|
||
|
it 'indexes relevant statuses' do
|
||
|
expect { importer.import! }.to update_index(StatusesIndex)
|
||
|
end
|
||
|
end
|
||
|
end
|