diff options
author | Matt Jankowski <matt@jankowski.online> | 2023-03-10 07:33:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-10 13:33:30 +0100 |
commit | 688287c59d526ef76089322a368789f5846c6ac3 (patch) | |
tree | 0a89ad3e71b45b123388898cc67f93ed5a022b91 /spec/workers | |
parent | 56bddfbfa39956ea3a8c52721eb364b1120634f6 (diff) |
Coverage improvement round-out following up previous work (#23987)
Diffstat (limited to 'spec/workers')
-rw-r--r-- | spec/workers/verify_account_links_worker_spec.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/workers/verify_account_links_worker_spec.rb b/spec/workers/verify_account_links_worker_spec.rb new file mode 100644 index 000000000..227591392 --- /dev/null +++ b/spec/workers/verify_account_links_worker_spec.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +require 'rails_helper' + +describe VerifyAccountLinksWorker do + let(:worker) { described_class.new } + + describe 'perform' do + it 'runs without error for missing record' do + expect { worker.perform(nil) }.to_not raise_error + end + end +end |