Module: RspecExtensions::DateHelpers
- Defined in:
- lib/rspec_tapas/date_helpers.rb
Instance Method Summary collapse
Instance Method Details
#at_date(*parts) ⇒ Object
3 4 5 6 7 |
# File 'lib/rspec_tapas/date_helpers.rb', line 3 def at_date(*parts) travel_to(Date.new(*parts)) do yield end end |
#freeze_time ⇒ Object
9 10 11 12 13 |
# File 'lib/rspec_tapas/date_helpers.rb', line 9 def freeze_time travel_to(Time.current) do yield end end |