(self)
| 558 | self.client.acct('passwd') |
| 559 | |
| 560 | def test_rename(self): |
| 561 | self.client.rename('a', 'b') |
| 562 | self.server.handler_instance.next_response = '200' |
| 563 | self.assertRaises(ftplib.error_reply, self.client.rename, 'a', 'b') |
| 564 | |
| 565 | def test_delete(self): |
| 566 | self.client.delete('foo') |
nothing calls this directly
no test coverage detected