Example #1
0
 def testAnyNoMatchSet(self):
     self.assertFalse(any_match_set(['\d+$'], ['df', 'dfg']))
Example #2
0
 def testAnyMatchSet(self):
     self.assertTrue(any_match_set(['\d+$'], ['sdf', '345']))