Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I execute something every 10 minutes using eventmachine in a ruby application and I have to test that it is cancelled at some precise time. So I need something in my tests to simulate that the user waits 10 minutes.

I think some gem like Timecop would not work but maybe it's a solution.

How would you test something like this ?

share|improve this question
EventMachine has a periodic_timer method, to which you can pass the period and a block after which will execute periodically. But, I have a feeling I misunderstood the question. – destiel starship May 17 '12 at 20:06
I am looking for a solution to write unit tests about this. – Skydreamer May 19 '12 at 11:13
Hmm, I don't think there is a way to fast forward time, if your application takes 10 minutes to execute something, you will have to wait 10 minutes. You could decrease the time to 10 seconds (even thought that s a lot, too) for the sake of the test – destiel starship May 20 '12 at 0:40
I don't think so. I think Ruby's monkey-patching and other features are powerful enough do to almost anything. And in fact, you can replace easily Time.now – Skydreamer May 21 '12 at 14:18
@destielstarship: there are many ways of controlling the time; you could use a Gem like Timecop, or your own abstraction around Time.now that you could stub out. – Duncan Bayne Oct 17 '12 at 2:14
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.