(self)
| 1646 | self.assertEqual(b"123", s.read()) |
| 1647 | |
| 1648 | def test_read_too_much(self): |
| 1649 | s = _StreamSlice(self.stream, 1, 4) |
| 1650 | self.assertEqual(b"1234", s.read(6)) |
| 1651 | |
| 1652 | def test_read_all(self): |
| 1653 | s = _StreamSlice(self.stream, 2, 1) |
nothing calls this directly
no test coverage detected