本文整理汇总了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