File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 7
7
- Add new ` RSpec/Rails/MinitestAssertions ` cop. ([ @ydah ] )
8
8
- Fix a false positive for ` RSpec/PendingWithoutReason ` when not inside example. ([ @ydah ] )
9
9
- Fix a false negative for ` RSpec/PredicateMatcher ` when using ` include ` and ` respond_to ` . ([ @ydah ] )
10
+ - Fix a false positive for ` RSpec/StubbedMock ` when stubbed message expectation with a block and block parameter. ([ @ydah ] )
10
11
11
12
## 2.16.0 (2022-12-13)
12
13
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ class StubbedMock < Base
91
91
# @param node [RuboCop::AST::Node]
92
92
# @yield [RuboCop::AST::Node] matcher
93
93
def_node_matcher :matcher_with_return_block , <<~PATTERN
94
- (block #message_expectation? args _) # receive(:foo) { 'bar' }
94
+ (block #message_expectation? ( args) _) # receive(:foo) { 'bar' }
95
95
PATTERN
96
96
97
97
# @!method matcher_with_hash(node)
Original file line number Diff line number Diff line change 15
15
RUBY
16
16
end
17
17
18
+ it 'ignores stubbed message expectation with a block and block parameter' do
19
+ expect_no_offenses ( <<-RUBY )
20
+ expect(foo).to receive(:bar) { |x| bar }
21
+ RUBY
22
+ end
23
+
18
24
it 'flags stubbed message expectation with argument matching' do
19
25
expect_offense ( <<-RUBY )
20
26
expect(foo).to receive(:bar).with(42).and_return('hello world')
You can’t perform that action at this time.
0 commit comments