Skip to content

Instantly share code, notes, and snippets.

@pewniak747
Created July 5, 2013 13:30
Show Gist options
  • Save pewniak747/5934534 to your computer and use it in GitHub Desktop.
Save pewniak747/5934534 to your computer and use it in GitHub Desktop.
config.around(:each) do |example|
Timecop.freeze if freeze_time?
example.run
Timecop.return if freeze_time?
end
def freeze_time?
example.metadata[:freeze_time]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment