Created
December 13, 2012 13:34
-
-
Save yaotti/4276417 to your computer and use it in GitHub Desktop.
テストにsleep入れるな問題の解決策 ref: http://qiita.com/items/dda39a9f989eda53295d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo | |
def bar_with_timeshift | |
val = bar_without_timeshift | |
Timecop.travel(Time.now + 10.seconds) | |
val | |
end | |
alias_method_chain :bar, :timeshift | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment