本文整理汇总了Python中cleo.application.Application.get_helper_set方法的典型用法代码示例。如果您正苦于以下问题:Python Application.get_helper_set方法的具体用法?Python Application.get_helper_set怎么用?Python Application.get_helper_set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cleo.application.Application
的用法示例。
在下文中一共展示了Application.get_helper_set方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_default_helper_set_returns_default_values
# 需要导入模块: from cleo.application import Application [as 别名]
# 或者: from cleo.application.Application import get_helper_set [as 别名]
def test_get_default_helper_set_returns_default_values(self):
application = Application()
application.set_auto_exit(False)
application.set_catch_exceptions(False)
helper_set = application.get_helper_set()
self.assertTrue(helper_set.has("formatter"))
self.assertTrue(helper_set.has("dialog"))
self.assertTrue(helper_set.has("progress"))
示例2: test_adding_single_helper_set_overwrites_default_values
# 需要导入模块: from cleo.application import Application [as 别名]
# 或者: from cleo.application.Application import get_helper_set [as 别名]
def test_adding_single_helper_set_overwrites_default_values(self):
application = Application()
application.set_auto_exit(False)
application.set_catch_exceptions(False)
application.set_helper_set(HelperSet({"formatter": FormatterHelper()}))
helper_set = application.get_helper_set()
self.assertTrue(helper_set.has("formatter"))
self.assertFalse(helper_set.has("dialog"))
self.assertFalse(helper_set.has("progress"))