tests/mockblackbox.py
author Matt Harbison <matt_harbison@yahoo.com>
Thu, 05 Dec 2024 13:17:18 -0500
changeset 52393 10f98d358f6c
parent 51699 ca7bde5dbafb
permissions -rw-r--r--
churn: stop using the `pycompat.open()` shim

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