import_stats_examples.rb 323 B

1234567891011
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. RSpec.shared_examples 'Import::ImportStats' do
  3. it 'responds to current_state' do
  4. expect(described_class).to respond_to('current_state')
  5. end
  6. it 'responds to statistic' do
  7. expect(described_class).to respond_to('statistic')
  8. end
  9. end