tests/mocktime.py
author Matt Harbison <matt_harbison@yahoo.com>
Sat, 07 Jul 2018 23:47:49 -0400
changeset 38628 539f9708b980
parent 34323 12b355964de8
child 43076 2372284d9457
permissions -rw-r--r--
hook: narrow the 'priority' prefix check to align with the documentation A prefix like 'priorityfoo' is meaningless, but `hg help config.hooks` calls out the dot.

from __future__ import absolute_import

import os
import time

class mocktime(object):
    def __init__(self, increment):
        self.time = 0
        self.increment = [float(s) for s in increment.split()]
        self.pos = 0

    def __call__(self):
        self.time += self.increment[self.pos % len(self.increment)]
        self.pos += 1
        return self.time

def uisetup(ui):
    time.time = mocktime(os.environ.get('MOCKTIME', '0.1'))