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


Python VirtualConsoleArgumentParser.print_help方法代码示例

本文整理汇总了Python中opennode.oms.endpoint.ssh.cmdline.VirtualConsoleArgumentParser.print_help方法的典型用法代码示例。如果您正苦于以下问题:Python VirtualConsoleArgumentParser.print_help方法的具体用法?Python VirtualConsoleArgumentParser.print_help怎么用?Python VirtualConsoleArgumentParser.print_help使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在opennode.oms.endpoint.ssh.cmdline.VirtualConsoleArgumentParser的用法示例。


在下文中一共展示了VirtualConsoleArgumentParser.print_help方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: CmdLineParserTestCase

# 需要导入模块: from opennode.oms.endpoint.ssh.cmdline import VirtualConsoleArgumentParser [as 别名]
# 或者: from opennode.oms.endpoint.ssh.cmdline.VirtualConsoleArgumentParser import print_help [as 别名]
class CmdLineParserTestCase(unittest.TestCase):

    def setUp(self):
        self.terminal = mock.Mock()
        self.parser = VirtualConsoleArgumentParser(file=self.terminal)

    def test_help(self):
        self.parser.add_argument('somearg')

        self.parser.print_help()

        assert len(self.terminal.method_calls) == 1
        eq_(self.terminal.method_calls[0][0], 'write')

    def test_exit(self):
        got_exception = False
        try:
            self.parser.parse_args(['--invalid'])
        except ArgumentParsingError:
            got_exception = True

        assert got_exception

    def test_group_dict(self):
        self.parser.add_argument('--one', type=int, action=GroupDictAction)
        self.parser.add_argument('--two', type=int, action=GroupDictAction)
        self.parser.add_argument('--three', type=int, action=GroupDictAction, group='other')

        res = self.parser.parse_args('--one 1 --two 2 --three 3'.split())
        eq_(res.group, dict(one=1, two=2))
        eq_(res.other, dict(three=3))

    def test_declaration(self):
        some_default = object()
        self.parser.declare_argument('group', some_default)
        res = self.parser.parse_args([])

        eq_(res.group, some_default)
开发者ID:AsherBond,项目名称:opennode-management,代码行数:40,代码来源:test_cmdline.py


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