Skip to content

Instantly share code, notes, and snippets.

@dchelimsky
Forked from qrush/gist:590466
Created September 21, 2010 21:10
Show Gist options
  • Save dchelimsky/590557 to your computer and use it in GitHub Desktop.
Save dchelimsky/590557 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
around { |example| Timecop.freeze(1.day.from_now, &example) }
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