2016-11-25 16:10:37 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
require 'import/helper_examples'
|
|
|
|
require 'import/importer_examples'
|
|
|
|
require 'import/otrs/diff_examples'
|
2016-12-19 08:59:54 +00:00
|
|
|
require 'import/async_examples'
|
|
|
|
require 'import/import_stats_examples'
|
2016-11-25 16:10:37 +00:00
|
|
|
|
|
|
|
RSpec.describe Import::OTRS do
|
|
|
|
it_behaves_like 'Import backend'
|
2016-12-19 08:59:54 +00:00
|
|
|
it_behaves_like 'Import::Async'
|
2016-11-25 16:10:37 +00:00
|
|
|
it_behaves_like 'Import::Helper'
|
2016-12-19 08:59:54 +00:00
|
|
|
it_behaves_like 'Import::ImportStats'
|
2016-11-25 16:10:37 +00:00
|
|
|
it_behaves_like 'Import::OTRS::Diff'
|
|
|
|
end
|