(self)
| 881 | self.assertEqual(self.client.af, socket.AF_INET6) |
| 882 | |
| 883 | def test_makeport(self): |
| 884 | with self.client.makeport(): |
| 885 | self.assertEqual(self.server.handler_instance.last_received_cmd, |
| 886 | 'eprt') |
| 887 | |
| 888 | def test_makepasv(self): |
| 889 | host, port = self.client.makepasv() |
nothing calls this directly
no test coverage detected