Skip to content

Instantly share code, notes, and snippets.

@qrush
Created September 21, 2010 20:29
Show Gist options
  • Save qrush/590466 to your computer and use it in GitHub Desktop.
Save qrush/590466 to your computer and use it in GitHub Desktop.
describe SomeClass do
freeze { 1.day.from_now }
it "does some stuff with time" do
end
end
# this actually does...
describe SomeClass do
before { Timecop.freeze(1.day.from_now) }
after { Timecop.return }
it "does some stuff with time" do
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment