summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/destroy_all_spec.rb
blob: f6850a00238f7f78388b34fe442811a7bd1e7e5a (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
# frozen_string_literal: true

require 'fast_spec_helper'
require 'rubocop'
require_relative '../../../rubocop/cop/destroy_all'

RSpec.describe RuboCop::Cop::DestroyAll do
  subject(:cop) { described_class.new }

  it 'flags the use of destroy_all with a send receiver' do
    expect_offense(<<~CODE)
      foo.destroy_all # rubocop: disable Cop/DestroyAll
      ^^^^^^^^^^^^^^^ Use `delete_all` instead of `destroy_all`. [...]
    CODE
  end

  it 'flags the use of destroy_all with a constant receiver' do
    expect_offense(<<~CODE)
      User.destroy_all # rubocop: disable Cop/DestroyAll
      ^^^^^^^^^^^^^^^^ Use `delete_all` instead of `destroy_all`. [...]
    CODE
  end

  it 'flags the use of destroy_all when passing arguments' do
    expect_offense(<<~CODE)
      User.destroy_all([])
      ^^^^^^^^^^^^^^^^^^^^ Use `delete_all` instead of `destroy_all`. [...]
    CODE
  end

  it 'flags the use of destroy_all with a local variable receiver' do
    expect_offense(<<~CODE)
      users = User.all
      users.destroy_all # rubocop: disable Cop/DestroyAll
      ^^^^^^^^^^^^^^^^^ Use `delete_all` instead of `destroy_all`. [...]
    CODE
  end

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