zammad/spec/lib/import/async_examples.rb
2026-01-02 15:41:09 +02:00

11 lines
307 B
Ruby

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
RSpec.shared_examples 'Import::Async' do
it 'responds to start_bg' do
expect(described_class).to respond_to('start_bg')
end
it 'responds to status_bg' do
expect(described_class).to respond_to('status_bg')
end
end