summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/destroy_all_spec.rb
blob: 63a4dbb79853ec85d41a893b1030c146e80735b1 (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
require 'spec_helper'
require 'rubocop'
require 'rubocop/rspec/support'
require_relative '../../../rubocop/cop/destroy_all'

describe RuboCop::Cop::DestroyAll do
  include CopHelper

  # change me

  subject(:cop) { described_class.new }

  it 'flags the use of destroy_all with a send receiver' do
    inspect_source('foo.destroy_all # rubocop: disable DestroyAll')

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

  it 'flags the use of destroy_all with a constant receiver' do
    inspect_source('User.destroy_all # rubocop: disable DestroyAll')

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

  it 'flags the use of destroy_all when passing arguments' do
    inspect_source('User.destroy_all([])')

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

  it 'flags the use of destroy_all with a local variable receiver' do
    inspect_source(<<~RUBY)
    users = User.all
    users.destroy_all # rubocop: disable DestroyAll
    RUBY

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

  it 'does not flag the use of delete_all' do
    inspect_source('foo.delete_all')

    expect(cop.offenses).to be_empty
  end
end