async_examples.rb 307 B

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