def testAnyMatch_singleValue(self): self.assertTrue(any_match(['\d+$', 'asd'], '123'))
def testNoMatch_singleValue(self): self.assertFalse(any_match(['\d+$', 'asd'], 'dgjoi'))