(self)
| 3501 | self.assertEqual(self.serv_sock.recv(len(MSG)), MSG) |
| 3502 | |
| 3503 | def _testSendmsgAncillaryGenerator(self): |
| 3504 | self.assertEqual(self.sendmsgToServer([MSG], (o for o in [])), |
| 3505 | len(MSG)) |
| 3506 | |
| 3507 | def testSendmsgArray(self): |
| 3508 | # Send data from an array instead of the usual bytes object. |
nothing calls this directly
no test coverage detected