本文整理汇总了Python中cliff.app.App.run方法的典型用法代码示例。如果您正苦于以下问题:Python App.run方法的具体用法?Python App.run怎么用?Python App.run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cliff.app.App
的用法示例。
在下文中一共展示了App.run方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_list_deprecated_commands
# 需要导入模块: from cliff.app import App [as 别名]
# 或者: from cliff.app.App import run [as 别名]
def test_list_deprecated_commands():
# FIXME(dhellmann): Are commands tied too closely to the app? Or
# do commands know too much about apps by using them to get to the
# command manager?
stdout = StringIO()
app = App('testing', '1',
utils.TestCommandManager(utils.TEST_NAMESPACE),
stdout=stdout)
app.NAME = 'test'
try:
app.run(['--help'])
except SystemExit:
pass
help_output = stdout.getvalue()
assert 'two words' in help_output
assert 'three word command' in help_output
assert 'old cmd' not in help_output
示例2: test_list_matching_commands
# 需要导入模块: from cliff.app import App [as 别名]
# 或者: from cliff.app.App import run [as 别名]
def test_list_matching_commands():
stdout = StringIO()
app = App('testing', '1',
utils.TestCommandManager(utils.TEST_NAMESPACE),
stdout=stdout)
app.NAME = 'test'
try:
assert app.run(['t']) == 2
except SystemExit:
pass
output = stdout.getvalue()
assert "test: 't' is not a test command. See 'test --help'." in output
assert 'Did you mean one of these?' in output
assert 'three word command\n two words\n' in output
示例3: main
# 需要导入模块: from cliff.app import App [as 别名]
# 或者: from cliff.app.App import run [as 别名]
def main(argv=sys.argv[1:]):
myapp = App()
return myapp.run(argv)