4e5a9838fa
- Creates a support/helper file and moves all the duplication defs into it
9 lines
233 B
Ruby
9 lines
233 B
Ruby
# Inspired by https://github.com/ljkbennett/stub_env/blob/master/lib/stub_env/helpers.rb
|
|
module StubWorker
|
|
def stub_worker(queue:)
|
|
Class.new do
|
|
include Sidekiq::Worker
|
|
sidekiq_options queue: queue
|
|
end
|
|
end
|
|
end
|