async_examples.rb 230 B

123456789
  1. RSpec.shared_examples 'Import::Async' do
  2. it 'responds to start_bg' do
  3. expect(described_class).to respond_to('start_bg')
  4. end
  5. it 'responds to status_bg' do
  6. expect(described_class).to respond_to('status_bg')
  7. end
  8. end