##// END OF EJS Templates
tests: remove lines that enable progress extension...
tests: remove lines that enable progress extension progress has not been an extension for a long time, it has been integrated into core, thus these lines have not done anything for a while.

File last commit:

r28028:ac49ecb2 default
r28597:cd34bf29 default
Show More
mockblackbox.py
14 lines | 284 B | text/x-python | PythonLexer
from mercurial import util
def makedate():
return 0, 0
def getuser():
return 'bob'
def getpid():
return 5000
# mock the date and user apis so the output is always the same
def uisetup(ui):
util.makedate = makedate
util.getuser = getuser
util.getpid = getpid