Skip to content

Files

Latest commit

 

History

History
22 lines (14 loc) · 302 Bytes

RSpec-RedundantAround.md

File metadata and controls

22 lines (14 loc) · 302 Bytes

Pattern: Redundant around hook

Issue: -

Description

Remove redundant around hook.

Examples

# bad
around do |example|
  example.run
end

# good

Further Reading