(self)
| 415 | self.assertEqual(b'at_eof', data) |
| 416 | |
| 417 | def test_exception(self): |
| 418 | stream = self._make_one() |
| 419 | self.assertIsNone(stream.exception()) |
| 420 | |
| 421 | exc = ValueError() |
| 422 | stream.set_exception(exc) |
| 423 | self.assertIs(stream.exception(), exc) |
| 424 | |
| 425 | def test_exception_waiter(self): |
| 426 | stream = self._make_one() |
nothing calls this directly
no test coverage detected