##// END OF EJS Templates
check-code: detect and ban 'util.Abort'...
check-code: detect and ban 'util.Abort' We have seen the light, please use the new way.

File last commit:

r24705:0ead0a07 default
r26588:b3f7516f default
Show More
mockblackbox.py
11 lines | 229 B | text/x-python | PythonLexer
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