(self, regex, output)
| 590 | return name |
| 591 | |
| 592 | def regex_search(self, regex, output): |
| 593 | match = re.search(regex, output, re.MULTILINE) |
| 594 | if not match: |
| 595 | self.fail("%r not found in %r" % (regex, output)) |
| 596 | return match |
| 597 | |
| 598 | def check_line(self, output, pattern, full=False, regex=True): |
| 599 | if not regex: |
no test coverage detected