trabajo-afectivo/spec/lib/import/otrs/dynamic_field_spec.rb

19 lines
591 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
require 'rails_helper'
require 'lib/import/otrs/dynamic_field_examples'
RSpec.describe Import::OTRS::DynamicField do
let(:object_structure) { load_dynamic_field_json('text/default') }
let(:start_import_test) { described_class.new(object_structure) }
it_behaves_like 'Import::OTRS::DynamicField'
it 'requires an implementation of init_callback' do
allow(ObjectManager::Attribute).to receive(:get).and_return(false)
expect do
start_import_test
end.to raise_error(RuntimeError)
end
end