tests/mockblackbox.py
author Matt Harbison <matt_harbison@yahoo.com>
Fri, 27 Dec 2019 13:11:22 -0500
changeset 43969 68b09ebf1c13
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
ancestor: drop another unused variable assignment Also caught by PyCharm. The only time this is used is immediately after another assignment below this. Differential Revision: https://phab.mercurial-scm.org/D7737

from __future__ import absolute_import
from mercurial.utils import procutil

# XXX: we should probably offer a devel option to do this in blackbox directly
def getuser():
    return b'bob'


def getpid():
    return 5000


# mock the date and user apis so the output is always the same
def uisetup(ui):
    procutil.getuser = getuser
    procutil.getpid = getpid