13 lines
266 B
Ruby
13 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
|