(self)
| 586 | self.assertEqual(dir, 'pwd ok') |
| 587 | |
| 588 | def test_quit(self): |
| 589 | self.assertEqual(self.client.quit(), '221 quit ok') |
| 590 | # Ensure the connection gets closed; sock attribute should be None |
| 591 | self.assertEqual(self.client.sock, None) |
| 592 | |
| 593 | def test_abort(self): |
| 594 | self.client.abort() |
nothing calls this directly
no test coverage detected