22 lines
588 B
Ruby
22 lines
588 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'fast_spec_helper'
|
|
|
|
require_relative '../../../rubocop/cop/include_sidekiq_worker'
|
|
|
|
RSpec.describe RuboCop::Cop::IncludeSidekiqWorker do
|
|
subject(:cop) { described_class.new }
|
|
|
|
context 'when `Sidekiq::Worker` is included' do
|
|
it 'registers an offense and corrects', :aggregate_failures do
|
|
expect_offense(<<~CODE)
|
|
include Sidekiq::Worker
|
|
^^^^^^^^^^^^^^^ Include `ApplicationWorker`, not `Sidekiq::Worker`.
|
|
CODE
|
|
|
|
expect_correction(<<~CODE)
|
|
include ApplicationWorker
|
|
CODE
|
|
end
|
|
end
|
|
end
|