tests/mocktime.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 06 Sep 2019 23:26:30 -0700
changeset 42870 4257c33e24b7
parent 34316 12b355964de8
child 43076 2372284d9457
permissions -rw-r--r--
check-code: allow command substitution with $(command) Both `command` and $(command) are specified by POSIX. The latter nests better. I don't see why we shouldn't allow both (or only the latter). Differential Revision: https://phab.mercurial-scm.org/D6789

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