9 lines
244 B
Ruby
9 lines
244 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://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
|