(self)
| 102 | self.assertEqual(data, b"hello") |
| 103 | |
| 104 | def test_connect_ipv4_ipv4(self): |
| 105 | self.do_test_connect(socket.AF_INET, "127.0.0.1") |
| 106 | |
| 107 | def test_connect_ipv4_dual(self): |
| 108 | self.do_test_connect(socket.AF_INET, "localhost") |
nothing calls this directly
no test coverage detected