本文整理匯總了Python中robottelo.cli.base.Base._construct_command方法的典型用法代碼示例。如果您正苦於以下問題:Python Base._construct_command方法的具體用法?Python Base._construct_command怎麽用?Python Base._construct_command使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類robottelo.cli.base.Base
的用法示例。
在下文中一共展示了Base._construct_command方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_construct_command
# 需要導入模塊: from robottelo.cli.base import Base [as 別名]
# 或者: from robottelo.cli.base.Base import _construct_command [as 別名]
def test_construct_command(self):
"""_construct_command builds a command using flags and arguments"""
Base.command_base = 'basecommand'
Base.command_sub = 'subcommand'
command_parts = Base._construct_command({
u'flag-one': True,
u'flag-two': False,
u'argument': u'value',
u'ommited-arg': None,
}).split()
self.assertIn(u'basecommand', command_parts)
self.assertIn(u'subcommand', command_parts)
self.assertIn(u'--flag-one', command_parts)
self.assertIn(u'--argument="value"', command_parts)
self.assertNotIn(u'--flag-two', command_parts)
self.assertEqual(len(command_parts), 4)