forked from rubocop/rubocop-rspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheq.rb
47 lines (41 loc) · 1.05 KB
/
eq.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
44
45
46
47
# frozen_string_literal: true
module RuboCop
module Cop
module RSpec
# Use `eq` instead of `be ==` to compare objects.
#
# @example
# # bad
# expect(foo).to be == 42
#
# # good
# expect(foo).to eq 42
#
class Eq < Base
extend AutoCorrector
include RangeHelp
MSG = 'Use `eq` instead of `be ==` to compare objects.'
RESTRICT_ON_SEND = Runners.all
# @!method be_equals(node)
def_node_matcher :be_equals, <<~PATTERN
(send _ #Runners.all $(send (send nil? :be) :== _))
PATTERN
def on_send(node)
be_equals(node) do |matcher|
range = offense_range(matcher)
add_offense(range) do |corrector|
corrector.replace(range, 'eq')
end
end
end
private
def offense_range(matcher)
range_between(
matcher.source_range.begin_pos,
matcher.loc.selector.end_pos
)
end
end
end
end
end