tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sat, 02 Sep 2017 21:49:45 +0900
changeset 34058 4bf1889456f3
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
test-editor-filename: fix portability of fake editor command - /bin/bash doesn't exist on FreeBSD - edit is executed by cmd.exe on Windows

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)