2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2016-11-25 16:10:37 +00:00
|
|
|
require 'rails_helper'
|
2017-03-27 09:25:45 +00:00
|
|
|
require 'lib/import/otrs/history_examples'
|
2016-11-25 16:10:37 +00:00
|
|
|
|
|
|
|
RSpec.describe Import::OTRS::History do
|
|
|
|
|
|
|
|
let(:start_import_test) { described_class.new(object_structure) }
|
|
|
|
let(:object_structure) { load_history_json('article/default') }
|
|
|
|
|
|
|
|
it 'requires an implementation of init_callback' do
|
2017-10-01 12:25:52 +00:00
|
|
|
expect do
|
2016-11-25 16:10:37 +00:00
|
|
|
start_import_test
|
2017-10-01 12:25:52 +00:00
|
|
|
end.to raise_error(RuntimeError)
|
2016-11-25 16:10:37 +00:00
|
|
|
end
|
|
|
|
end
|