(self)
| 939 | asyncore.close_all(ignore_all=True) |
| 940 | |
| 941 | def test_control_connection(self): |
| 942 | self.assertNotIsInstance(self.client.sock, ssl.SSLSocket) |
| 943 | self.client.auth() |
| 944 | self.assertIsInstance(self.client.sock, ssl.SSLSocket) |
| 945 | |
| 946 | def test_data_connection(self): |
| 947 | # clear text |
nothing calls this directly
no test coverage detected