Sha256: 07ce7c4780a8d742bc7c3e524955156956e12be4d7b3c181121cbd7f42cad7a5

Contents?: true

Size: 1.2 KB

Versions: 10

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

10 entries across 10 versions & 1 rubygems

Version Path
spreewald-0.5.4 lib/spreewald/timecop_steps.rb
spreewald-0.5.3 lib/spreewald/timecop_steps.rb
spreewald-0.5.2 lib/spreewald/timecop_steps.rb
spreewald-0.5.1 lib/spreewald/timecop_steps.rb
spreewald-0.5.0 lib/spreewald/timecop_steps.rb
spreewald-0.4.6 lib/spreewald/timecop_steps.rb
spreewald-0.4.5 lib/spreewald/timecop_steps.rb
spreewald-0.4.4 lib/spreewald/timecop_steps.rb
spreewald-0.4.3 lib/spreewald/timecop_steps.rb
spreewald-0.4.2 lib/spreewald/timecop_steps.rb