Exemplo n.º 1
0
 def testAnyMatch_singleValue(self):
     self.assertTrue(any_match(['\d+$', 'asd'], '123'))
Exemplo n.º 2
0
 def testNoMatch_singleValue(self):
     self.assertFalse(any_match(['\d+$', 'asd'], 'dgjoi'))