Skip to content

Instantly share code, notes, and snippets.

@yaotti
Created December 13, 2012 13:34
Show Gist options
  • Save yaotti/4276417 to your computer and use it in GitHub Desktop.
Save yaotti/4276417 to your computer and use it in GitHub Desktop.
テストにsleep入れるな問題の解決策 ref: http://qiita.com/items/dda39a9f989eda53295d
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