tests/mockblackbox.py
author Simon Sapin <simon.sapin@octobus.net>
Tue, 23 Nov 2021 19:39:51 +0100
changeset 48343 eb428010aad2
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
rhg: Also parse flags in the manifest parser Differential Revision: https://phab.mercurial-scm.org/D11772

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