本文整理汇总了Python中apache.aurora.client.cli.command_hooks.GlobalCommandHookRegistry.get_required_hooks方法的典型用法代码示例。如果您正苦于以下问题:Python GlobalCommandHookRegistry.get_required_hooks方法的具体用法?Python GlobalCommandHookRegistry.get_required_hooks怎么用?Python GlobalCommandHookRegistry.get_required_hooks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类apache.aurora.client.cli.command_hooks.GlobalCommandHookRegistry
的用法示例。
在下文中一共展示了GlobalCommandHookRegistry.get_required_hooks方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: assert_skip_forbidden
# 需要导入模块: from apache.aurora.client.cli.command_hooks import GlobalCommandHookRegistry [as 别名]
# 或者: from apache.aurora.client.cli.command_hooks.GlobalCommandHookRegistry import get_required_hooks [as 别名]
def assert_skip_forbidden(self, context, skip_opt, user, noun, verb, args):
"""Checks that a hook would NOT be allowed to be skipped in a command invocation"""
try:
# assertRaises doesn't work with classmethods.
context.args = args
GlobalCommandHookRegistry.get_required_hooks(context, skip_opt, noun, verb, user)
self.fail("Should have thrown an error.")
except context.CommandError:
pass
示例2: assert_skip_allowed
# 需要导入模块: from apache.aurora.client.cli.command_hooks import GlobalCommandHookRegistry [as 别名]
# 或者: from apache.aurora.client.cli.command_hooks.GlobalCommandHookRegistry import get_required_hooks [as 别名]
def assert_skip_allowed(self, context, skip_opt, user, noun, verb, args):
"""Checks that a hook would be allowed to be skipped in a command invocation"""
GlobalCommandHookRegistry.get_required_hooks(context, skip_opt, noun, verb, user)