tests/mocktime.py
author Anton Shestakov <av6@dwimlabs.net>
Sun, 15 Apr 2018 18:37:22 +0800
changeset 37705 82eeafd78784
parent 34323 12b355964de8
child 43076 2372284d9457
permissions -rw-r--r--
tests: make custom templates that use {whyunstable} terser These templates demonstrate that {whyunstable} is fully template-friendly, but they don't need to produce such long lines of output.

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