Sha256: 464303ace187dbaf85fb02b69e984351acd7642693e7417a96ae00b5cf1b3f63
Contents?: true
Size: 1.2 KB
Versions: 15
Compression:
Stored size: 1.2 KB
Contents
# coding: UTF-8 # Steps to travel through time using [Timecop](https://github.com/jtrupiano/timecop). # # See [this article](https://makandracards.com/makandra/1222-useful-cucumber-steps-to-travel-through-time-with-timecop) for details. if defined?(Timecop) # Example: # # Given the date is "2012-02-10" # Given the time is "2012-02-10 13:40" When /^the (?:date|time) is "(\d{4}-\d{2}-\d{2}(?: \d{1,2}:\d{2})?)"$/ do |time| Timecop.travel Time.parse(time) end # Example: # # Given the time is "13:40" When /^the time is "(\d{1,2}:\d{2})"$/ do |time| Timecop.travel Time.parse(time) # date will be today end # Example: # # When it is 10 minutes later # When it is a few hours earlier When /^it is (\d+|a|some|a few) (seconds?|minutes?|hours?|days?|weeks?|months?|years?) (later|earlier)$/ do |amount, unit, direction| amount = case amount when 'a' 1 when 'some', 'a few' 10 else amount.to_i end amount = -amount if direction == 'earlier' Timecop.travel(Time.now + amount.send(unit)) end After do Timecop.return end end
Version data entries
15 entries across 15 versions & 1 rubygems