Skip to content

Commit 1b99171

Browse files
committed
Fix a false positive for RSpec/StubbedMock when stubbed message expectation with a block and block parameter
Fix: #1518
1 parent a1ece2c commit 1b99171

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Add new `RSpec/Rails/MinitestAssertions` cop. ([@ydah])
88
- Fix a false positive for `RSpec/PendingWithoutReason` when not inside example. ([@ydah])
99
- 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])
1011

1112
## 2.16.0 (2022-12-13)
1213

lib/rubocop/cop/rspec/stubbed_mock.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class StubbedMock < Base
9191
# @param node [RuboCop::AST::Node]
9292
# @yield [RuboCop::AST::Node] matcher
9393
def_node_matcher :matcher_with_return_block, <<~PATTERN
94-
(block #message_expectation? args _) # receive(:foo) { 'bar' }
94+
(block #message_expectation? (args) _) # receive(:foo) { 'bar' }
9595
PATTERN
9696

9797
# @!method matcher_with_hash(node)

spec/rubocop/cop/rspec/stubbed_mock_spec.rb

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
RUBY
1616
end
1717

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+
1824
it 'flags stubbed message expectation with argument matching' do
1925
expect_offense(<<-RUBY)
2026
expect(foo).to receive(:bar).with(42).and_return('hello world')

0 commit comments

Comments
 (0)