tests/crashgetbundler.py
author Sean Farley <sean@farley.io>
Mon, 31 Jul 2017 14:40:28 -0700
branchstable
changeset 33655 48d520fdf880
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
push: add tests for unsafe ssh url (SEC)

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)