コード例 #1
0
 def assertNotRegex(self, text, regex, msg=None):
     # In python 2, alias to the future python 3 function
     return _TestCase.assertNotRegexpMatches(self, text, regex, msg=msg)
コード例 #2
0
ファイル: unit.py プロジェクト: yambehis/salt
 def assertNotRegex(
     self, text, regex, msg=None
 ):  # pylint: disable=arguments-differ
     # In python 2, alias to the future python 3 function
     return _TestCase.assertNotRegexpMatches(self, text, regex, msg=msg)