(self, regex, output)
| 628 | return name |
| 629 | |
| 630 | def regex_search(self, regex, output): |
| 631 | match = re.search(regex, output, re.MULTILINE) |
| 632 | if not match: |
| 633 | self.fail("%r not found in %r" % (regex, output)) |
| 634 | return match |
| 635 | |
| 636 | def check_line(self, output, pattern, full=False, regex=True): |
| 637 | if not regex: |
no test coverage detected