##// END OF EJS Templates
debugcommands: introduce new debugrequirements command...
debugcommands: introduce new debugrequirements command This for now just prints out the list of current requirements. In future this will be helpful in reading requirements from couple of sources, and checking which requirement comes from where. Differential Revision: https://phab.mercurial-scm.org/D8632

File last commit:

r43346:2372284d default
r45667:4a28f5e8 default
Show More
mockmakedate.py
23 lines | 533 B | text/x-python | PythonLexer
Taapas Agrawal
histedit: add rewrite.update-timestamp support to fold and mess...
r41249 # mock out util.makedate() to supply testable values
from __future__ import absolute_import
import os
from mercurial import pycompat
from mercurial.utils import dateutil
Augie Fackler
formatting: blacken the codebase...
r43346
Taapas Agrawal
histedit: add rewrite.update-timestamp support to fold and mess...
r41249 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)
Augie Fackler
formatting: blacken the codebase...
r43346
Taapas Agrawal
histedit: add rewrite.update-timestamp support to fold and mess...
r41249 dateutil.makedate = mockmakedate