コード例 #1
0
ファイル: test.py プロジェクト: andreisavu/dbgrep
 def testAnyNoMatchSet(self):
     self.assertFalse(any_match_set(['\d+$'], ['df', 'dfg']))
コード例 #2
0
ファイル: test.py プロジェクト: andreisavu/dbgrep
 def testAnyMatchSet(self):
     self.assertTrue(any_match_set(['\d+$'], ['sdf', '345']))