Mercurial > hg
view tests/mockmakedate.py @ 49524:45268599f55e stable
tests: add another variation of EADDRNOTAVAIL message (e.g. from NetBSD)
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Wed, 19 Oct 2022 16:55:46 +0400 |
parents | 6000f5b25c9b |
children |
line wrap: on
line source
# 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