What's the best way to set Time.now for the purpose of testing time-sensitive methods in a Unit test? Thanks!
|
1
|
|||||||
|
|
|
I really like the Timecop library. You can do time warps in block form (just like time-warp):
(Yes, you can nest block-form time travel.) You can also do declarative time travel:
I have some cucumber helpers for Timecop here. They let you do things like:
|
|||
|
|
|
|
Personally I prefer to make the clock injectable, like so:
Or:
However, many prefer to use a mocking/stubbing library. In RSpec/flexmock you can use:
Or in Mocha:
|
||||
|
|
|
Do the time-warp time-warp is a library that does what you want. It gives you a method that takes a time and a block and anything that happens in the block uses the faked time.
|
|||
|
|
|
|
I'm using RSpec and I did this: Time.stub!(:now).and_return(2.days.ago) before I call Time.now. In that way I'm able to control the time I used for that particular test case |
||
|
|
|
|
This kind of works and allows for nesting:
It could be slightly improved by undefing the stack and depth accessors at the end Usage:
|
||
|
|
|
|
Depending upon what you are comparing
Then in your tests then you choose which one to use to test the different features or actions based upon the time relative to |
||
|
|
|
|
Also see this question where I put this comment as well. Depending upon what you are comparing
Then in your tests then you choose which one to use to test the different features or actions based upon the time relative to |
||
|
|
|
|
I think most people roll their own. |
|||
|
|
