##// END OF EJS Templates
commands: add postincoming docstring for explanation of arguments
commands: add postincoming docstring for explanation of arguments

File last commit:

r28028:ac49ecb2 default
r28502:e0d19d95 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