tests/mockblackbox.py
author Yuya Nishihara <yuya@tcha.org>
Thu, 20 Oct 2016 22:20:31 +0900
changeset 30325 f6369544bf85
parent 28943 417380aa5bbe
child 32412 043948c84647
permissions -rw-r--r--
mail: do not print(), use ui.debug() instead Since print() can't take a bytes output, it's pretty useless in Mercurial on Python 3. As this is a debug message, switching to ui.debug() seems fine.

from __future__ import absolute_import
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