Welcome to mirror list, hosted at ThFree Co, Russian Federation.

any_instance_of_spec.rb « rspec « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7675ded25e17cca8defb0164a5d867ceb6eac8b (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
# frozen_string_literal: true

require 'fast_spec_helper'

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

RSpec.describe RuboCop::Cop::RSpec::AnyInstanceOf do
  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)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Do not use `allow_any_instance_of` [...]
      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 offense and corrects', :aggregate_failures do
      expect_offense(source)

      expect_correction(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)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Do not use `expect_any_instance_of` [...]
      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 offense and corrects', :aggregate_failures do
      expect_offense(source)

      expect_correction(corrected_source)
    end
  end
end