Mercurial > hg
view tests/mockmakedate.py @ 42647:8804aa6c07a0 stable
automation: extract strings to constants
Differential Revision: https://phab.mercurial-scm.org/D6672
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 22 Jul 2019 18:55:52 -0700 |
parents | 704a3aa3dc0a |
children | 2372284d9457 |
line wrap: on
line source
# 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