Browse Source
* CLDC-4235: set allow_future_form_use false in staging * CLDC-4280: add time travel behaviour for staging (and check on test first) * CLDC-4280: actually check on review * CLDC-4280: time travel on staging now review works * CLDC-4280: temp add review to diff again * CLDC-4280: send notify emails in real time in all environments to avoid auth/time skew errors * CLDC-4280: also apply with_timecop to s3 * CLDC-4280: undo changes to reviewpull/3270/head^2
7 changed files with 82 additions and 40 deletions
@ -0,0 +1,9 @@
|
||||
module TimecopHelper |
||||
def without_timecop(&block) |
||||
if defined?(Timecop) |
||||
Timecop.return(&block) |
||||
else |
||||
yield |
||||
end |
||||
end |
||||
end |
||||
Loading…
Reference in new issue