summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/polymorphic_associations_spec.rb
blob: 49959aa641984ac12f483e568a5441ff33ea10f7 (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
require 'spec_helper'
require 'rubocop'
require 'rubocop/rspec/support'
require_relative '../../../rubocop/cop/polymorphic_associations'

describe RuboCop::Cop::PolymorphicAssociations do
  include CopHelper

  subject(:cop) { described_class.new }

  context 'inside the app/models directory' do
    it 'registers an offense when polymorphic: true is used' do
      allow(cop).to receive(:in_model?).and_return(true)

      inspect_source(cop, 'belongs_to :foo, polymorphic: true')

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

  context 'outside the app/models directory' do
    it 'does nothing' do
      allow(cop).to receive(:in_model?).and_return(false)

      inspect_source(cop, 'belongs_to :foo, polymorphic: true')

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