##// END OF EJS Templates
test-resolve.t: remove completely unnecessary line...
test-resolve.t: remove completely unnecessary line I have no idea what I was thinking when I wrote this.

File last commit:

r24705:0ead0a07 default
r27026:c93b44b7 default
Show More
mockblackbox.py
11 lines | 229 B | text/x-python | PythonLexer
Gregory Szorc
tests: move mock blackbox extension into own file...
r24705 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