summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/rspec/any_instance_of_spec.rb
blob: 971e28853a3175725a1551185a4cf35f621cc13e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# frozen_string_literal: true

require 'fast_spec_helper'

require_relative '../../../../rubocop/cop/rspec/any_instance_of'

RSpec.describe RuboCop::Cop::RSpec::AnyInstanceOf, type: :rubocop do
  include CopHelper

  subject(:cop) { described_class.new }

  context 'when calling allow_any_instance_of' do
    let(:source) do
      <<~SRC
      allow_any_instance_of(User).to receive(:invalidate_issue_cache_counts)
      SRC
    end

    let(:corrected_source) do
      <<~SRC
      allow_next_instance_of(User) do |instance|
        allow(instance).to receive(:invalidate_issue_cache_counts)
      end
      SRC
    end

    it 'registers an offence' do
      inspect_source(source)

      expect(cop.offenses.size).to eq(1)
    end

    it 'can autocorrect the source' do
      expect(autocorrect_source(source)).to eq(corrected_source)
    end
  end

  context 'when calling expect_any_instance_of' do
    let(:source) do
      <<~SRC
      expect_any_instance_of(User).to receive(:invalidate_issue_cache_counts).with(args).and_return(double)
      SRC
    end

    let(:corrected_source) do
      <<~SRC
      expect_next_instance_of(User) do |instance|
        expect(instance).to receive(:invalidate_issue_cache_counts).with(args).and_return(double)
      end
      SRC
    end

    it 'registers an offence' do
      inspect_source(source)

      expect(cop.offenses.size).to eq(1)
    end

    it 'can autocorrect the source' do
      expect(autocorrect_source(source)).to eq(corrected_source)
    end
  end
end