tests/mockmakedate.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 14 Mar 2019 10:24:51 +0000
changeset 41941 08fad2ca4eb6
parent 41213 704a3aa3dc0a
child 43076 2372284d9457
permissions -rw-r--r--
manifestcache: further fix to debug command output Removing more capital letters. The output will get a test once other issues get fixed.

# mock out util.makedate() to supply testable values

from __future__ import absolute_import

import os

from mercurial import pycompat
from mercurial.utils import dateutil

def mockmakedate():
    filename = os.path.join(os.environ['TESTTMP'], 'testtime')
    try:
        with open(filename, 'rb') as timef:
            time = float(timef.read()) + 1
    except IOError:
        time = 0.0
    with open(filename, 'wb') as timef:
        timef.write(pycompat.bytestr(time))
    return (time, 0)

dateutil.makedate = mockmakedate