mastodon/spec/workers/webhooks/delivery_worker_spec.rb

14 lines
266 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe Webhooks::DeliveryWorker do
let(:worker) { described_class.new }
describe 'perform' do
it 'runs without error' do
expect { worker.perform(nil, nil) }.to_not raise_error
end
end
end