Skip to content

Files

Latest commit

 

History

History
25 lines (17 loc) · 368 Bytes

RSpec-Rails-TravelAround.md

File metadata and controls

25 lines (17 loc) · 368 Bytes

Pattern: Use of around

Issue: -

Description

Prefer to travel in before rather than around.

Examples

# bad
around do |example|
  freeze_time do
    example.run
  end
end

# good
before { freeze_time }

Further Reading