当前位置: 首页>>代码示例>>Python>>正文


Python App.run方法代码示例

本文整理汇总了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
开发者ID:dhellmann,项目名称:cliff,代码行数:19,代码来源:test_help.py

示例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
开发者ID:mmariani,项目名称:cliff,代码行数:16,代码来源:test_app.py

示例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)
开发者ID:moonrox,项目名称:python-shinkenclient,代码行数:5,代码来源:shell.py


注:本文中的cliff.app.App.run方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。