(self)
| 3940 | self.assertEqual(self.server_buffer, b'') |
| 3941 | |
| 3942 | async def test_invalid_offset(self): |
| 3943 | with self.assertRaises(OSError) as cm: |
| 3944 | await self.async_sendfile(self.sockno, self.fileno, -1, 4096) |
| 3945 | self.assertEqual(cm.exception.errno, errno.EINVAL) |
| 3946 | |
| 3947 | async def test_keywords(self): |
| 3948 | # Keyword arguments should be supported |
nothing calls this directly
no test coverage detected