tests/mockmakedate.py
author Raphaël Gomès <rgomes@octobus.net>
Thu, 03 Nov 2022 15:44:54 +0100
branchstable
changeset 49555 9dce3960735b
parent 48966 6000f5b25c9b
permissions -rw-r--r--
config: fix indentation of some`share-safe` options This makes the output much more readable.

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


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