You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix a false positive for RSpec/ExampleWithoutDescription when specify with multi-line block and missing description
This PR fixes a false positive for `RSpec/ExampleWithoutDescription` when `specify` with multi-line block and missing description.
This is because `specify` is recommended when there is no description.
refs: https://rspec.rubystyle.guide/#it-and-specify
```ruby
specify do
# ...
end
```
0 commit comments