本文整理汇总了Python中tambo.Parse.has方法的典型用法代码示例。如果您正苦于以下问题:Python Parse.has方法的具体用法?Python Parse.has怎么用?Python Parse.has使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tambo.Parse
的用法示例。
在下文中一共展示了Parse.has方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_matches_an_option_in_arguments
# 需要导入模块: from tambo import Parse [as 别名]
# 或者: from tambo.Parse import has [as 别名]
def test_matches_an_option_in_arguments(self):
parser = Parse(['/usr/bin/foo', '--foo'])
parser.options = ['--foo']
parser.parse_args()
assert parser == {} # No key/values
assert parser.has('--foo') # But it does exist
示例2: test_matches_valid_configured_options_only
# 需要导入模块: from tambo import Parse [as 别名]
# 或者: from tambo.Parse import has [as 别名]
def test_matches_valid_configured_options_only(self):
parser = Parse(['/bin/tambo', '--foo', 'off', '--meh'])
parser.options = ['--foo']
parser.parse_args()
assert parser.has('--foo')
assert parser.has('--meh')
assert parser.get('--foo') == 'off'
assert parser.get('--meh') is None
示例3: Test_has_or_does_not_have_options
# 需要导入模块: from tambo import Parse [as 别名]
# 或者: from tambo.Parse import has [as 别名]
class Test_has_or_does_not_have_options(object):
def setup(self):
self.parser = Parse(['/bin/tambo', '--foo', 'BAR', '--bar'])
self.parser.parse_args()
def test_accepts_lists_and_returns_if_one_matches(self):
opt = ['a', 'b', '--foo']
assert self.parser.has(opt) == True
def test_returns_none_if_cannot_match_from_a_list(self):
opt = ['a', 'b']
assert self.parser.has(opt) == False
def test_deals_with_single_items_that_match(self):
assert self.parser.has('--foo') == True
def test_returns_False_when_a_single_item_does_not_match(self):
assert self.parser.has('--asdadfoo') == False