本文整理汇总了Python中opennode.oms.endpoint.ssh.cmdline.VirtualConsoleArgumentParser.declare_argument方法的典型用法代码示例。如果您正苦于以下问题:Python VirtualConsoleArgumentParser.declare_argument方法的具体用法?Python VirtualConsoleArgumentParser.declare_argument怎么用?Python VirtualConsoleArgumentParser.declare_argument使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类opennode.oms.endpoint.ssh.cmdline.VirtualConsoleArgumentParser
的用法示例。
在下文中一共展示了VirtualConsoleArgumentParser.declare_argument方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: CmdLineParserTestCase
# 需要导入模块: from opennode.oms.endpoint.ssh.cmdline import VirtualConsoleArgumentParser [as 别名]
# 或者: from opennode.oms.endpoint.ssh.cmdline.VirtualConsoleArgumentParser import declare_argument [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)