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::Article do
|
|
|
|
it_behaves_like 'Import::OTRS::History'
|
|
|
|
|
|
|
|
it 'imports an OTRS AddNote history entry' do
|
|
|
|
|
|
|
|
zammad_structure = {
|
|
|
|
id: '11307',
|
|
|
|
o_id: '3973',
|
|
|
|
history_type: 'created',
|
|
|
|
history_object: 'Ticket::Article',
|
|
|
|
related_o_id: '730',
|
|
|
|
related_history_object: 'Ticket',
|
|
|
|
created_at: '2014-11-21 00:21:08',
|
|
|
|
created_by_id: '3'
|
|
|
|
}
|
|
|
|
|
|
|
|
history_from_json('article/default', zammad_structure)
|
|
|
|
end
|
|
|
|
end
|