2023-03-05 02:56:09 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 15:12:25 +10:00
|
|
|
RSpec.describe PushUpdateWorker do
|
2023-03-05 02:56:09 +11:00
|
|
|
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
|