Home
last modified time | relevance | path

Searched refs:assertRegexpMatches (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_site.py115 self.assertRegexpMatches(err_out.getvalue(), "line 1")
116 self.assertRegexpMatches(err_out.getvalue(),
121 self.assertRegexpMatches(err_out.getvalue(), 'Traceback')
122 self.assertRegexpMatches(err_out.getvalue(), r'import bad\)syntax')
123 self.assertRegexpMatches(err_out.getvalue(), 'SyntaxError')
130 self.assertRegexpMatches(err_out.getvalue(), "line 2")
131 self.assertRegexpMatches(err_out.getvalue(),
134 self.assertRegexpMatches(err_out.getvalue(), 'Traceback')
135 self.assertRegexpMatches(err_out.getvalue(), 'ImportError')
144 self.assertRegexpMatches(err_out.getvalue(), "line 1")
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
Dtest_case.py952 self.assertRegexpMatches('asdfabasdf', r'ab+')
953 self.assertRaises(self.failureException, self.assertRegexpMatches,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dcase.py989 def assertRegexpMatches(self, text, expected_regexp, msg=None): member in TestCase