1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-02 06:23:47 -05:00

17 lines
342 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
RSpec.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