tests/crashgetbundler.py
author Pulkit Goyal <7895pulkit@gmail.com>
Sat, 26 May 2018 02:57:36 +0530
changeset 38237 66fc2ef8dbff
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
graft: add test showing --continue not preserving --log passed earlier This patch shows that when we do `hg graft --continue`, the value of --log flag passed when initial graft was run was not used. Next patch will fix this and tests will help us in realising that. Differential Revision: https://phab.mercurial-scm.org/D3661

from __future__ import absolute_import

from mercurial.i18n import _
from mercurial import (
        changegroup,
        error,
        extensions
    )

def abort(orig, *args, **kwargs):
    raise error.Abort(_('this is an exercise'))

def uisetup(ui):
    extensions.wrapfunction(changegroup, 'getbundler', abort)