tests/mocktime.py
author Yuya Nishihara <yuya@tcha.org>
Sat, 04 Nov 2017 19:21:39 +0900
branchstable
changeset 35025 5c6b96b832c2
parent 34316 12b355964de8
child 43076 2372284d9457
permissions -rw-r--r--
subrepo: extract preprocess of repo.commit() to free function No code change other than extracting a function. Maybe we should stop mutating the status argument, but that's out of the scope of stable changes.

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