tests/mockblackbox.py
author timeless <timeless@mozdev.org>
Wed, 06 Jan 2016 07:55:57 +0000
changeset 27664 84a9d7fc9ceb
parent 24705 0ead0a07ed9c
child 28028 ac49ecb2a897
permissions -rw-r--r--
log: help provide sort by date example

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