本文整理匯總了Python中rules.Rules.get方法的典型用法代碼示例。如果您正苦於以下問題:Python Rules.get方法的具體用法?Python Rules.get怎麽用?Python Rules.get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類rules.Rules
的用法示例。
在下文中一共展示了Rules.get方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_reMach
# 需要導入模塊: from rules import Rules [as 別名]
# 或者: from rules.Rules import get [as 別名]
def test_reMach(self):
msg = """
===
RegExp:%s
Text:%s
NOT MACH ===
"""
lanRules = Rules()
Format = lanRules.get('Format', 'pattern')
# print(lanRules.get('Filter', 'pattern'))
Filter = lanRules['Filter']['pattern']
Blank = lanRules['Blank']['pattern']
print(Blank)
testSamples = [
# [resault,regExp,Text,re.report]
[True, r'hello', 'hello world!'],
[True, Format, 'E\tE/_1_=English\tS/_1_=簡體中文'],
[False, Format, 'E\tE/_2_=English\tS/_1_=簡體中文'],
[True, Format, 'F\tF/_16_=la touche # pour entrer espace\tS/_16_=#鍵輸入空格\t35'],
[True, Filter, 'E\t#E/_1_=English\tS/_1_=簡體中文'],
[True, Filter, 'E\tE/_1_=English\t#S/_1_=簡體中文'],
[True, Filter, 'E\tE/_1_=English\tS/1_=簡體中文'], # 基準字段格式檢測錯誤,也會排除
[True, Filter, 'G\tF/_16_=la touche # pour entrer espace\tS/_1k6_=#鍵輸入空格 35'],
[True, Blank, 'E/_1_=Eng lish'],
]
for mustRet, regExp, text in testSamples:
resault = Rules().Test(regExp, text)
emsg = msg % (regExp, text)
self.assertEqual(resault, mustRet, emsg)
pass