view tests/crashgetbundler.py @ 49588:7236f11db0c3

demandimport: ensure lazyloaderex sets loader attributes (issue6725) Adds test capturing missed expectation.
author Jason R. Coombs <jaraco@jaraco.com>
date Wed, 02 Nov 2022 09:34:03 -0400
parents 6000f5b25c9b
children
line wrap: on
line source

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)