示例#1
0
文件: test.py 项目: andreisavu/dbgrep
 def testAnyMatch_singleValue(self):
     self.assertTrue(any_match(['\d+$', 'asd'], '123'))
示例#2
0
文件: test.py 项目: andreisavu/dbgrep
 def testNoMatch_singleValue(self):
     self.assertFalse(any_match(['\d+$', 'asd'], 'dgjoi'))