(self)
| 3517 | self.assertEqual(self.serv_sock.recv(len(MSG)), MSG) |
| 3518 | |
| 3519 | def _testSendmsgGather(self): |
| 3520 | self.assertEqual(self.sendmsgToServer([MSG[:3], MSG[3:]]), len(MSG)) |
| 3521 | |
| 3522 | def testSendmsgBadArgs(self): |
| 3523 | # Check that sendmsg() rejects invalid arguments. |
nothing calls this directly
no test coverage detected