tests/mocktime.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 27 Dec 2015 13:08:51 +0900
changeset 36281 0ef50a5e3ae1
parent 34323 12b355964de8
child 43076 2372284d9457
permissions -rw-r--r--
hgweb: translate Abort in help command to 404 error c3784e3c3e8d changed the exception type to be raised if unknowncmd=False.

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'))