tests/mockblackbox.py
author Julien Cristau <jcristau@debian.org>
Mon, 14 Oct 2024 16:46:25 +0200
branchstable
changeset 51696 cd788962c6d9
parent 48966 6000f5b25c9b
permissions -rw-r--r--
tests: use shlex.quote instead of pipes.quote The pipes module got removed in python 3.13. https://bugs.debian.org/1084553

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