blob: c8f94fa82a81d19450da8fa84cb947bc393a2904 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# frozen_string_literal: true
require 'rails_helper'
describe PushUpdateWorker do
let(:worker) { described_class.new }
describe 'perform' do
it 'runs without error for missing record' do
account_id = nil
status_id = nil
expect { worker.perform(account_id, status_id) }.to_not raise_error
end
end
end
|