tests/mockmakedate.py
author Gregory Szorc <gregory.szorc@gmail.com>
Sat, 02 Mar 2019 12:55:29 -0800
changeset 41833 89f01ea906ae
parent 41213 704a3aa3dc0a
child 43076 2372284d9457
permissions -rw-r--r--
attr: don't attempt to .encode() a str on Python 2 Otherwise it coerces automatically. Differential Revision: https://phab.mercurial-scm.org/D6048

# 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