(self, io, expected)
| 90 | self._check_calls(io, [(b'\x00\x00\x00\x01',), (b'a',), (b'\x00\x03',), (b'\x00\x00\x00\x00',)]) |
| 91 | |
| 92 | def _check_calls(self, io, expected): |
| 93 | self.assertEqual( |
| 94 | tuple(c[1] for c in io.write.mock_calls), |
| 95 | tuple(expected) |
| 96 | ) |
| 97 | |
| 98 | def test_continuous_paging(self): |
| 99 | """ |
no outgoing calls
no test coverage detected