summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/include_sidekiq_worker_spec.rb
blob: 7f406535dda7243fb42d6cc8e268e7624806540f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'spec_helper'
require 'rubocop'
require 'rubocop/rspec/support'
require_relative '../../../rubocop/cop/include_sidekiq_worker'

describe RuboCop::Cop::IncludeSidekiqWorker do
  include CopHelper

  subject(:cop) { described_class.new }

  context 'when `Sidekiq::Worker` is included' do
    let(:source) { 'include Sidekiq::Worker' }
    let(:correct_source) { 'include ApplicationWorker' }

    it 'registers an offense ' do
      inspect_source(cop, source)

      aggregate_failures do
        expect(cop.offenses.size).to eq(1)
        expect(cop.offenses.map(&:line)).to eq([1])
        expect(cop.highlights).to eq(['Sidekiq::Worker'])
      end
    end

    it 'autocorrects to the right version' do
      autocorrected = autocorrect_source(cop, source)

      expect(autocorrected).to eq(correct_source)
    end
  end
end