summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/module_with_instance_variables_spec.rb
blob: ce2e156e423135ab664131ecbb87fccbf5aa3ce3 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
require 'spec_helper'
require 'rubocop'
require 'rubocop/rspec/support'
require_relative '../../../rubocop/cop/module_with_instance_variables'

describe RuboCop::Cop::ModuleWithInstanceVariables do
  include CopHelper

  subject(:cop) { described_class.new }

  shared_examples('registering offense') do
    it 'registers an offense when instance variable is used in a module' do
      inspect_source(cop, source)

      aggregate_failures do
        expect(cop.offenses.size).to eq(offending_lines.size)
        expect(cop.offenses.map(&:line)).to eq(offending_lines)
      end
    end
  end

  context 'when source is a regular module' do
    let(:source) do
      <<~RUBY
        module M
          def f
            @f ||= true
          end
        end
      RUBY
    end

    let(:offending_lines) { [3] }

    it_behaves_like 'registering offense'
  end

  context 'when source is a nested module' do
    let(:source) do
      <<~RUBY
        module N
          module M
            def f
              @f = true
            end
          end
        end
      RUBY
    end

    let(:offending_lines) { [4] }

    it_behaves_like 'registering offense'
  end

  context 'when source is a nested module with multiple offenses' do
    let(:source) do
      <<~RUBY
        module N
          module M
            def f
              @f ||= true
            end

            def g
              true
            end

            def h
              @h = true
            end
          end
        end
      RUBY
    end

    let(:offending_lines) { [4, 12] }

    it_behaves_like 'registering offense'
  end

  context 'when source is offending but it is a rails helper' do
    before do
      allow(cop).to receive(:rails_helper?).and_return(true)
    end

    it 'does not register offenses' do
      inspect_source(cop, <<~RUBY)
        module M
          def f
            @f ||= true
          end
        end
      RUBY

      expect(cop.offenses).to be_empty
    end
  end

  context 'when source is offending but it is a rails mailer' do
    before do
      allow(cop).to receive(:rails_mailer?).and_return(true)
    end

    it 'does not register offenses' do
      inspect_source(cop, <<~RUBY)
        module M
          def f
            @f = true
          end
        end
      RUBY

      expect(cop.offenses).to be_empty
    end
  end
end