Mercurial > hg
view tests/mockblackbox.py @ 25155:6ab5a1c9ea3c
run-tests: drop wifexited polyfill
os.WIFEXITED exists as of python 2.6 for me, so we no longer need this
polyfill.
author | Augie Fackler <augie@google.com> |
---|---|
date | Sun, 17 May 2015 21:15:04 -0400 |
parents | 0ead0a07ed9c |
children | ac49ecb2a897 |
line wrap: on
line source
from mercurial import util def makedate(): return 0, 0 def getuser(): return 'bob' # mock the date and user apis so the output is always the same def uisetup(ui): util.makedate = makedate util.getuser = getuser