(self)
| 3133 | self.serv_conn.send(MSG) |
| 3134 | |
| 3135 | def testDup(self): |
| 3136 | # Testing dup() |
| 3137 | sock = self.cli_conn.dup() |
| 3138 | self.addCleanup(sock.close) |
| 3139 | msg = sock.recv(1024) |
| 3140 | self.assertEqual(msg, MSG) |
| 3141 | |
| 3142 | def _testDup(self): |
| 3143 | self.serv_conn.send(MSG) |
nothing calls this directly
no test coverage detected