tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 25 Feb 2018 12:50:30 +0900
changeset 36444 717a279c0c21
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
templater: specialize ResourceUnavailable error so that it can be caught See the next patch how it will be used.

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)