can_be_imported_examples.rb 244 B

123456789
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. RSpec.shared_examples 'CanBeImported' do
  3. describe '.importable?' do
  4. it 'returns true' do
  5. expect(described_class.importable?).to be(true)
  6. end
  7. end
  8. end