(self)
| 82 | raise Exception("output didn't match regex: %r" % line) |
| 83 | |
| 84 | def test_basic_logging(self): |
| 85 | self.logger.error("foo") |
| 86 | self.assertEqual(self.get_output(), b"foo") |
| 87 | |
| 88 | def test_bytes_logging(self): |
| 89 | with ignore_bytes_warning(): |
nothing calls this directly
no test coverage detected