trabajo-afectivo/spec/models/concerns/can_be_imported_examples.rb

10 lines
243 B
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
RSpec.shared_examples 'CanBeImported' do
describe '.importable?' do
it 'returns true' do
expect(described_class.importable?).to be(true)
end
end
end