tests/mockblackbox.py
author Jun Wu <quark@fb.com>
Wed, 29 Mar 2017 12:21:15 -0700
changeset 31718 bf64449b2779
parent 28943 417380aa5bbe
child 32412 043948c84647
permissions -rw-r--r--
hardlink: extract topic text logic of copyfiles The topic text shows whether it's "linking" or "copying", based on "hardlink" value. The function is extracted so a later patch can reuse it.

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