module ParallelTests

def now

real time even if someone messed with timecop in tests
def now
  if Time.respond_to?(:now_without_mock_time) # Timecop
    Time.now_without_mock_time
  else
    Time.now
  end
end