You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
280 B

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe VerifyAccountLinksWorker do
  4. let(:worker) { described_class.new }
  5. describe 'perform' do
  6. it 'runs without error for missing record' do
  7. expect { worker.perform(nil) }.to_not raise_error
  8. end
  9. end
  10. end