當前位置: 首頁>>代碼示例>>Python>>正文


Python Parse.has方法代碼示例

本文整理匯總了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
開發者ID:ktdreyer,項目名稱:tambo,代碼行數:9,代碼來源:test_parser.py

示例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
開發者ID:ktdreyer,項目名稱:tambo,代碼行數:10,代碼來源:test_parser.py

示例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
開發者ID:ktdreyer,項目名稱:tambo,代碼行數:21,代碼來源:test_parser.py


注:本文中的tambo.Parse.has方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。