forked from rubocop/rubocop-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assert_not.rb
42 lines (34 loc) · 904 Bytes
/
assert_not.rb
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
module RuboCop
module Cop
module Rails
#
# Use `assert_not` instead of `assert !`.
#
# @example
# # bad
# assert !x
#
# # good
# assert_not x
#
class AssertNot < Base
extend AutoCorrector
MSG = 'Prefer `assert_not` over `assert !`.'
RESTRICT_ON_SEND = %i[assert].freeze
def_node_matcher :offensive?, '(send nil? :assert (send ... :!) ...)'
def on_send(node)
return unless offensive?(node)
add_offense(node) do |corrector|
expression = node.loc.expression
corrector.replace(expression, corrected_source(expression.source))
end
end
private
def corrected_source(source)
source.gsub(/^assert(\(| ) *! */, 'assert_not\\1')
end
end
end
end
end