2016-11-25 16:10:37 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
require 'history'
|
|
|
|
|
|
|
|
def history_from_json(file, zammad_structure)
|
|
|
|
expect(History).to receive(:add).with(zammad_structure)
|
|
|
|
described_class.new(load_history_json(file))
|
|
|
|
end
|
|
|
|
|
|
|
|
def load_history_json(file)
|
|
|
|
json_fixture("import/otrs/history/#{file}")
|
|
|
|
end
|
|
|
|
|
|
|
|
RSpec.shared_examples 'Import::OTRS::History' do
|
|
|
|
it 'responds to init_callback' do
|
2016-11-29 11:56:24 +00:00
|
|
|
expect(::History).to receive(:add)
|
|
|
|
allow(::History::Attribute).to receive(:find_by).and_return(true)
|
2016-11-25 16:10:37 +00:00
|
|
|
blank_instance = described_class.new({})
|
|
|
|
expect(blank_instance).to respond_to('init_callback')
|
|
|
|
end
|
|
|
|
end
|