(self)
| 1650 | self.assertEqual(b"1234", s.read(6)) |
| 1651 | |
| 1652 | def test_read_all(self): |
| 1653 | s = _StreamSlice(self.stream, 2, 1) |
| 1654 | self.assertEqual(b"2", s.read(-1)) |
| 1655 | |
| 1656 | |
| 1657 | class TestResponseCallback(unittest.TestCase): |
nothing calls this directly
no test coverage detected