예제 #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'))