tests/mocktime.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 12 Apr 2019 15:41:32 +0200
changeset 42138 caebe5e7f4bd
parent 34323 12b355964de8
child 43076 2372284d9457
permissions -rw-r--r--
repoview: move subsettable in a dedicated module The dictionary got moved in `branchmap` to avoid import cycle. However, we are about to needs it in repoview too. So we introduce a now module to define that that mapping.

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