(self)
| 886 | 'eprt') |
| 887 | |
| 888 | def test_makepasv(self): |
| 889 | host, port = self.client.makepasv() |
| 890 | conn = socket.create_connection((host, port), timeout=TIMEOUT) |
| 891 | conn.close() |
| 892 | self.assertEqual(self.server.handler_instance.last_received_cmd, 'epsv') |
| 893 | |
| 894 | def test_transfer(self): |
| 895 | def retr(): |
nothing calls this directly
no test coverage detected