tests/mockblackbox.py
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 07 Oct 2016 15:29:57 +0200
changeset 30052 eaaedad68011
parent 28943 417380aa5bbe
child 32412 043948c84647
permissions -rw-r--r--
py3: switch to .items() using transformer .iteritems() don't exist in Python 3 world. Used the transformer to replace .iteritems() to .items()

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