Mercurial > hg
view tests/mockmakedate.py @ 42180:1b0be75cb61f
rust-discovery: implementing and exposing stats()
This time, it's simple enough that we can do it in all layers in
one shot.
Differential Revision: https://phab.mercurial-scm.org/D6233
author | Georges Racinet <georges.racinet@octobus.net> |
---|---|
date | Thu, 14 Mar 2019 17:57:31 +0000 |
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