2023-03-10 23:33:30 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 15:12:25 +10:00
|
|
|
RSpec.describe Importer::BaseImporter do
|
2023-03-10 23:33:30 +11:00
|
|
|
describe 'import!' do
|
|
|
|
let(:pool) { Concurrent::FixedThreadPool.new(5) }
|
|
|
|
let(:importer) { described_class.new(batch_size: 123, executor: pool) }
|
|
|
|
|
|
|
|
it 'raises an error' do
|
|
|
|
expect { importer.import! }.to raise_error(NotImplementedError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|