本文整理汇总了Python中invoke.parser.Context.get_arg方法的典型用法代码示例。如果您正苦于以下问题:Python Context.get_arg方法的具体用法?Python Context.get_arg怎么用?Python Context.get_arg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类invoke.parser.Context
的用法示例。
在下文中一共展示了Context.get_arg方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: can_take_Argument_instance
# 需要导入模块: from invoke.parser import Context [as 别名]
# 或者: from invoke.parser.Context import get_arg [as 别名]
def can_take_Argument_instance(self):
c = Context()
a = Argument(names=('foo',))
c.add_arg(a)
assert c.get_arg('foo') is a
示例2: returns_Argument_for_given_name
# 需要导入模块: from invoke.parser import Context [as 别名]
# 或者: from invoke.parser.Context import get_arg [as 别名]
def returns_Argument_for_given_name(self):
c = Context()
a = Argument(name='foo')
c.add_arg(a)
assert c.get_arg('foo') is a
示例3: may_give_arg_list_at_init_time
# 需要导入模块: from invoke.parser import Context [as 别名]
# 或者: from invoke.parser.Context import get_arg [as 别名]
def may_give_arg_list_at_init_time(self):
a1 = Argument('foo')
a2 = Argument('bar')
c = Context(name='name', args=(a1, a2))
assert c.get_arg('foo') is a1