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.
14 lines
367 B
14 lines
367 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
RSpec.describe Importer::BaseImporter do |
|
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
|
|
|