次のシナリオは、私の問題をほぼ要約しています。
Scenario: problems with subprocesses
Given the date is 01/01/2012 10:31
When I run `ruby -e "puts Time.now"`
Then the output should contain "10:31"
When I run ruby -e "puts Time.now"
つまり、子プロセスを起動Timecop.freeze
し、メインプロセスでのみ機能するため、すべてのスタブが無効になります。実行されているコマンドに現在のコンテキストを何らかの方法で「注入」する必要がありますが、何も思いつかないようです。私はここで不可能なことを試みていますか?
ステップ:
require 'timecop'
Given /^the date is (\d+)\/(\d+)\/(\d+) (\d+):(\d+)$/ do |month, day, year, hour, minute|
Timecop.freeze(Time.local(year.to_i, month.to_i, day.to_i, hour.to_i , minute.to_i, 0))
end