(self)
| 3398 | self.assertEqual(self.serv_sock.recv(len(MSG)), MSG) |
| 3399 | |
| 3400 | def _testSendmsgAncillaryGenerator(self): |
| 3401 | self.assertEqual(self.sendmsgToServer([MSG], (o for o in [])), |
| 3402 | len(MSG)) |
| 3403 | |
| 3404 | def testSendmsgArray(self): |
| 3405 | # Send data from an array instead of the usual bytes object. |
nothing calls this directly
no test coverage detected