forked from rubocop/rubocop-rspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
not_to_not.rb
43 lines (36 loc) · 999 Bytes
/
not_to_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
43
# frozen_string_literal: true
module RuboCop
module Cop
module RSpec
# Checks for consistent method usage for negating expectations.
#
# @example
# # bad
# it '...' do
# expect(false).to_not be_true
# end
#
# # good
# it '...' do
# expect(false).not_to be_true
# end
class NotToNot < Cop
include ConfigurableEnforcedStyle
MSG = 'Prefer `%<replacement>s` over `%<original>s`.'
def_node_matcher :not_to_not_offense, '(send _ % ...)'
def on_send(node)
not_to_not_offense(node, alternative_style) do
add_offense(node, location: :selector)
end
end
def autocorrect(node)
->(corrector) { corrector.replace(node.loc.selector, style.to_s) }
end
private
def message(_node)
format(MSG, replacement: style, original: alternative_style)
end
end
end
end
end